diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-05 16:07:53 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-07-05 16:07:53 +0900 |
| commit | ccea04f39177ee3cbec47b539a9b101ce344e17c (patch) | |
| tree | fdbba889c0dc5b8fe8f1267e49bcda5046b6c06c /packages/client/src/ui/deck.vue | |
| parent | chore(client): tweak deck (diff) | |
| download | misskey-ccea04f39177ee3cbec47b539a9b101ce344e17c.tar.gz misskey-ccea04f39177ee3cbec47b539a9b101ce344e17c.tar.bz2 misskey-ccea04f39177ee3cbec47b539a9b101ce344e17c.zip | |
chore(client): tweak deck
Diffstat (limited to 'packages/client/src/ui/deck.vue')
| -rw-r--r-- | packages/client/src/ui/deck.vue | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/client/src/ui/deck.vue b/packages/client/src/ui/deck.vue index 7cdc96ccea..19a99a95aa 100644 --- a/packages/client/src/ui/deck.vue +++ b/packages/client/src/ui/deck.vue @@ -33,7 +33,8 @@ <div>{{ i18n.ts._deck.introduction2 }}</div> </div> <div class="sideMenu"> - <button v-tooltip="i18n.ts._deck.addColumn" class="_button button" @click="addColumn"><i class="fas fa-plus"></i></button> + <button v-tooltip.left="i18n.ts._deck.addColumn" class="_button button" @click="addColumn"><i class="fas fa-plus"></i></button> + <button v-tooltip.left="i18n.ts.settings" class="_button button settings" @click="showSettings"><i class="fas fa-cog"></i></button> </div> </div> </div> @@ -110,6 +111,10 @@ const menuIndicated = computed(() => { return false; }); +function showSettings() { + os.pageWindow('/settings/deck'); +} + let columnsEl = $ref<HTMLElement>(); const addColumn = async (ev) => { |