Add Experiments section to Settings page

This commit is contained in:
silverpill 2023-01-08 21:00:25 +00:00
parent b719a0a371
commit f1cd206a39
2 changed files with 19 additions and 0 deletions

View file

@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
## [Unreleased]
### Added
- Added "Experiments" section to Settings page (includes "Move Followers" feature).
## [1.9.0] - 2023-01-08
### Added

View file

@ -53,6 +53,15 @@
</tr>
</table>
</section>
<section>
<h2>Experiments</h2>
<details class="experiments">
<summary>This section contains experimental features. Use at your own risk.</summary>
<router-link class="btn" :to="{ name: 'move-followers' }">
Move followers
</router-link>
</details>
</section>
</template>
</sidebar-layout>
</template>
@ -124,4 +133,10 @@ form {
color: $block-link-color;
}
}
.experiments {
summary {
margin-bottom: $block-outer-padding;
}
}
</style>