mirror of https://github.com/grafana/grafana.git
Merge remote-tracking branch 'origin' into axelav/sq-prevent-closing-unsaved-changes
CodeQL checks / Detect whether code changed (push) Waiting to run
Details
CodeQL checks / Analyze (actions) (push) Blocked by required conditions
Details
CodeQL checks / Analyze (go) (push) Blocked by required conditions
Details
CodeQL checks / Analyze (javascript) (push) Blocked by required conditions
Details
CodeQL checks / Detect whether code changed (push) Waiting to run
Details
CodeQL checks / Analyze (actions) (push) Blocked by required conditions
Details
CodeQL checks / Analyze (go) (push) Blocked by required conditions
Details
CodeQL checks / Analyze (javascript) (push) Blocked by required conditions
Details
This commit is contained in:
commit
41247d26ed
|
@ -195,11 +195,12 @@ export function BulkMoveProvisionedResource({ folderUid, selectedItems, onDismis
|
|||
const workflowOptions = getWorkflowOptions(repository);
|
||||
const folderPath = folder?.metadata?.annotations?.[AnnoKeySourcePath] || '';
|
||||
const timestamp = generateTimestamp();
|
||||
const defaultWorkflow = getDefaultWorkflow(repository);
|
||||
|
||||
const initialValues = {
|
||||
comment: '',
|
||||
ref: `bulk-move/${timestamp}`,
|
||||
workflow: getDefaultWorkflow(repository),
|
||||
ref: defaultWorkflow === 'branch' ? `bulk-move/${timestamp}` : (repository?.branch ?? ''),
|
||||
workflow: defaultWorkflow,
|
||||
};
|
||||
|
||||
if (!repository || isReadOnlyRepo) {
|
||||
|
|
Loading…
Reference in New Issue