odaptos_design_system 2.0.21 → 2.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/odaptos_design_system.cjs.development.js +4 -2
- package/dist/odaptos_design_system.cjs.development.js.map +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js +1 -1
- package/dist/odaptos_design_system.cjs.production.min.js.map +1 -1
- package/dist/odaptos_design_system.esm.js +4 -2
- package/dist/odaptos_design_system.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/Molecules/Interviews/SelfProtocolManager.tsx +2 -0
package/package.json
CHANGED
|
@@ -169,6 +169,7 @@ export const SelfProtocolManager = ({
|
|
|
169
169
|
buttonIcon={<SendIcon />}
|
|
170
170
|
onClick={() => sendTask(task)}
|
|
171
171
|
isDisabled={getIsTaskDisabled(task)}
|
|
172
|
+
isDisplay={true}
|
|
172
173
|
/>
|
|
173
174
|
);
|
|
174
175
|
} else if (task.type === 'scenario') {
|
|
@@ -204,6 +205,7 @@ export const SelfProtocolManager = ({
|
|
|
204
205
|
buttonIcon={<SendIcon />}
|
|
205
206
|
onClick={() => onClickFinishScenario()}
|
|
206
207
|
isDisabled={false}
|
|
208
|
+
isDisplay={true}
|
|
207
209
|
/>
|
|
208
210
|
)}
|
|
209
211
|
|