mirror of
https://github.com/anyproto/anytype-ts.git
synced 2025-06-08 05:57:02 +09:00
fix alpha channel in alpha versions
This commit is contained in:
parent
719010f650
commit
5a208f81c4
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ class ConfigManager {
|
|||
let channels = ChannelSettings.map((it) => {
|
||||
return { id: it.id, label: Util.translate(it.lang), type: 'radio', checked: (this.config.channel == it.id) };
|
||||
});
|
||||
if (!this.config.sudo) {
|
||||
if (!this.config.sudo && !version.match('alpha')) {
|
||||
channels = channels.filter(it => it.id != 'alpha');
|
||||
};
|
||||
return channels;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue