Add Experiments section to Settings page
This commit is contained in:
parent
b719a0a371
commit
f1cd206a39
2 changed files with 19 additions and 0 deletions
|
@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- Added "Experiments" section to Settings page (includes "Move Followers" feature).
|
||||||
|
|
||||||
## [1.9.0] - 2023-01-08
|
## [1.9.0] - 2023-01-08
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
|
@ -53,6 +53,15 @@
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</section>
|
</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>
|
</template>
|
||||||
</sidebar-layout>
|
</sidebar-layout>
|
||||||
</template>
|
</template>
|
||||||
|
@ -124,4 +133,10 @@ form {
|
||||||
color: $block-link-color;
|
color: $block-link-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.experiments {
|
||||||
|
summary {
|
||||||
|
margin-bottom: $block-outer-padding;
|
||||||
|
}
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue