Compare commits

..

3 Commits

Author SHA1 Message Date
ab13bb419b Merge branch 'develop' 2022-07-17 18:35:27 +09:00
0ed40b920b 12.116.1-simkey-v2 2022-07-17 18:35:03 +09:00
3b28e7029c fix: restore reload button 2022-07-17 18:34:12 +09:00
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "misskey",
"version": "12.116.1-simkey-v1",
"version": "12.116.1-simkey-v2",
"codename": "indigo",
"repository": {
"type": "git",

View File

@ -26,6 +26,9 @@
</div>
</template>
<div class="buttons right">
<button v-tooltip.noDelay="i18n.ts.reload" class="_button button" onclick="location.reload();">
<i class="fa-solid fa-arrow-rotate-right"></i>
</button>
<template v-for="action in actions">
<button v-tooltip.noDelay="action.text" class="_button button" :class="{ highlighted: action.highlighted }" @click.stop="action.handler" @touchstart="preventDrag"><i :class="action.icon"></i></button>
</template>