Skip to content
Snippets Groups Projects
Commit ce63f7f8 authored by Nils Brinckmann's avatar Nils Brinckmann
Browse files

Merge branch '76-remove-add-contact-button-once-the-user-logs-out' into 'master'

Don't show add button if the user is not logged in

Closes #76

See merge request sensor-system-management/frontend!98
parents 278819be 10f5b6fd
No related branches found
No related tags found
1 merge request!98Don't show add button if the user is not logged in
...@@ -47,6 +47,7 @@ permissions and limitations under the Licence. ...@@ -47,6 +47,7 @@ permissions and limitations under the Licence.
align-self="center" align-self="center"
> >
<v-btn <v-btn
v-if="isLoggedIn"
small small
color="primary" color="primary"
:disabled="selectedContact == null" :disabled="selectedContact == null"
......
...@@ -50,6 +50,7 @@ permissions and limitations under the Licence. ...@@ -50,6 +50,7 @@ permissions and limitations under the Licence.
align-self="center" align-self="center"
> >
<v-btn <v-btn
v-if="isLoggedIn"
small small
color="primary" color="primary"
:disabled="selectedContact == null" :disabled="selectedContact == null"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment