Skip to content

Commit c150983

Browse files
committed
#RI-6321 - set my tutorials collapsed by default
1 parent ec9fcfe commit c150983

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

redisinsight/api/src/__mocks__/custom-tutorial.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export const globalCustomTutorialManifest = {
143143
_actions: [CustomTutorialActions.CREATE],
144144
args: {
145145
withBorder: true,
146-
initialIsOpen: true,
146+
initialIsOpen: false,
147147
},
148148
children: [
149149
mockCustomTutorialManifest,

redisinsight/api/src/modules/custom-tutorial/custom-tutorial.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ export class CustomTutorialService {
145145
_actions: [CustomTutorialActions.CREATE],
146146
args: {
147147
withBorder: true,
148-
initialIsOpen: true,
148+
initialIsOpen: false,
149149
},
150150
children,
151151
};

redisinsight/api/test/api/custom-tutorials/POST-custom-tutorials.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const globalManifest = {
101101
'create',
102102
],
103103
args: {
104-
initialIsOpen: true,
104+
initialIsOpen: false,
105105
withBorder: true,
106106
},
107107
children: [],

0 commit comments

Comments
 (0)