We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21b773b commit 4c14e57Copy full SHA for 4c14e57
src/utils/aotf.js
@@ -806,6 +806,14 @@ export function getMutationArgsFromTokens (mutation, tokens) {
806
const alternate = alternateFields[arg._cylcType]
807
for (let token in tokens) {
808
if (arg._cylcObject && [token, alternate].includes(arg._cylcObject)) {
809
+ if (arg.name === 'cutoff') {
810
+ // Work around for a field we don't want filled in, see:
811
+ // * https://github.com/cylc/cylc-ui/issues/1222
812
+ // * https://github.com/cylc/cylc-ui/issues/1225
813
+ // TODO: Once #1225 is done the field type can be safely changed in
814
+ // the schema without creating a compatibility issue with the UIS.
815
+ continue
816
+ }
817
if (arg._cylcObject === alternate) {
818
token = alternate
819
}
0 commit comments