File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ export class BackupsSection extends Disposable {
150150 cssBackendBody (
151151 cssBackendNameRow (
152152 cssBackendName ( STORAGE_BACKENDS [ name ] . label ) ,
153- dom . maybe ( use => use ( this . _activeBackend ) ?? "none" === name , ( ) =>
153+ dom . maybe ( use => ( use ( this . _activeBackend ) ?? "none" ) === name , ( ) =>
154154 cssBackendTag ( cssBackendTag . cls ( "-active" ) , t ( "Active" ) ) ,
155155 ) ,
156156 disabled ? cssBackendTag ( cssBackendTag . cls ( "-disabled" ) , STORAGE_BACKENDS [ name ] . disabledTag ?.( ) ) : null ,
@@ -183,7 +183,7 @@ export class BackupsSection extends Disposable {
183183 ) ,
184184 ) ;
185185 }
186- case "azure " : {
186+ case "s3 " : {
187187 return cssInstructions (
188188 dom ( "div" , t ( "Set these environment variables and restart Grist to enable S3 storage:" ) ) ,
189189 cssCodeBlock (
@@ -198,7 +198,7 @@ export class BackupsSection extends Disposable {
198198 ) ,
199199 ) ;
200200 }
201- case "s3 " : {
201+ case "azure " : {
202202 return cssInstructions (
203203 dom ( "div" , t ( "Set these environment variables and restart Grist to enable Azure storage:" ) ) ,
204204 cssCodeBlock (
You can’t perform that action at this time.
0 commit comments