Add title text to navbar buttons
This commit is contained in:
parent
21cd015ada
commit
6c785ce566
1 changed files with 3 additions and 2 deletions
|
|
@ -48,20 +48,21 @@ function createSomeNotes() {
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Temporary button for testing -->
|
<!-- Temporary button for testing -->
|
||||||
<CNavbarButton @click="createSomeNotes">
|
<CNavbarButton title="Create dummy note tree" @click="createSomeNotes">
|
||||||
<RiNodeTree size="16px" class="inline" />
|
<RiNodeTree size="16px" class="inline" />
|
||||||
</CNavbarButton>
|
</CNavbarButton>
|
||||||
|
|
||||||
<!-- Temporary delete button until I add proper repo settings -->
|
<!-- Temporary delete button until I add proper repo settings -->
|
||||||
<CNavbarButton
|
<CNavbarButton
|
||||||
v-show="repos.selectedRepo !== undefined"
|
v-show="repos.selectedRepo !== undefined"
|
||||||
|
title="Delete repo"
|
||||||
@click="repos.removeRepo(repos.selectedRepoId)"
|
@click="repos.removeRepo(repos.selectedRepoId)"
|
||||||
>
|
>
|
||||||
<RiDeleteBinFill size="16px" class="inline" />
|
<RiDeleteBinFill size="16px" class="inline" />
|
||||||
</CNavbarButton>
|
</CNavbarButton>
|
||||||
|
|
||||||
<!-- Nothing hooked up yet -->
|
<!-- Nothing hooked up yet -->
|
||||||
<CNavbarButton>
|
<CNavbarButton title="Settings">
|
||||||
<RiSettings3Fill size="16px" class="inline" />
|
<RiSettings3Fill size="16px" class="inline" />
|
||||||
</CNavbarButton>
|
</CNavbarButton>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue