diff options
| author | tusooa <tusooa@kazv.moe> | 2023-01-06 13:30:35 -0500 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-01-06 13:35:39 -0500 |
| commit | 6d0b3d4d0a579b0669b93dc68c143d5755bf157a (patch) | |
| tree | f70e4e72b2588b0db498477d00f3d6a594c785a7 /src | |
| parent | 23d82e06f798f5a199805ea13687fe317d6a5c3c (diff) | |
Stop propogation for all top-bar buttons
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/desktop_nav/desktop_nav.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/desktop_nav/desktop_nav.vue b/src/components/desktop_nav/desktop_nav.vue index 5db7fc79..07bf8005 100644 --- a/src/components/desktop_nav/desktop_nav.vue +++ b/src/components/desktop_nav/desktop_nav.vue @@ -38,7 +38,7 @@ /> <button class="button-unstyled nav-icon" - @click="openSettingsModal" + @click.stop="openSettingsModal" > <FAIcon fixed-width @@ -65,7 +65,7 @@ <button v-if="currentUser" class="button-unstyled nav-icon" - @click.prevent="logout" + @click.stop.prevent="logout" > <FAIcon fixed-width |
