Skip to content

Commit

Permalink
Merge pull request #1979 from nextcloud/backport/1971/stable3
Browse files Browse the repository at this point in the history
[stable3] Add timestamp tooltip
  • Loading branch information
juliusknorr authored May 26, 2021
2 parents 1d94995 + 61d859e commit 207ef80
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/components/AppSidebar/AppSidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,10 @@ include a standard-header like it's used by the files app.
</form>
</template>
<!-- secondary title -->
<p v-if="subtitle.trim() !== ''" class="app-sidebar-header__subtitle">
<p
v-if="subtitle.trim() !== ''"
v-tooltip.auto="subtitleTooltip"
class="app-sidebar-header__subtitle">
{{ subtitle }}
</p>
</div>
Expand Down Expand Up @@ -288,6 +291,10 @@ export default {
type: String,
default: '',
},
subtitleTooltip: {
type: String,
default: '',
},
/**
* Url to the top header background image
Expand Down

0 comments on commit 207ef80

Please sign in to comment.