You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, if you have a really long value or multiline text it is not displayed well in the editor.
We should add an option to preview/edit the value in a popup.
We already have an Alerts component that we can use with redux, and wait for a result. For example in src/components/JPadFullEditor/JPadVisualEditor/JPadVisualEditor.js the handlePartitionAddition function (starting line 58)
const handlePartitionAddition = async (newPartition) => {
// some code
const alertResult = (await alerter.showCustomAlert(autoPartitionAlert(testAutoPartition)))
.result;
switch (alertResult) {
case 'RESET':
// do stuff
break;
case 'OK':
// do other stuff
break;
}
};
The text was updated successfully, but these errors were encountered:
At the moment, if you have a really long value or multiline text it is not displayed well in the editor.
We should add an option to preview/edit the value in a popup.
We already have an Alerts component that we can use with redux, and wait for a result. For example in src/components/JPadFullEditor/JPadVisualEditor/JPadVisualEditor.js the
handlePartitionAddition
function (starting line 58)The text was updated successfully, but these errors were encountered: