Skip to content

Commit

Permalink
Thing page: Fix navbar style issue when handler not available
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Hotze <[email protected]>
  • Loading branch information
florian-h05 committed Oct 22, 2024
1 parent e2d6cc7 commit ad14417
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<f7-page @page:afterin="onPageAfterIn" @page:beforeout="onPageBeforeOut" class="thing-details-page">
<f7-navbar :title="pageTitle + dirtyIndicator" back-link="Back" no-hairline>
<f7-nav-right v-show="!error && ready">
<f7-nav-right v-if="!error && ready">
<f7-link v-if="!editable" icon-f7="lock_fill" icon-only tooltip="This Thing is not editable through the UI" />
<f7-link v-else-if="$theme.md" icon-md="material:save" icon-only @click="save()" />
<f7-link v-else @click="save()">
Expand Down

0 comments on commit ad14417

Please sign in to comment.