* Add editing summary for a checklist * fix spacing * fix duplication issue due to rerender off-screen * remove worktree from cursor as I'm not using that * add tests * address PR review feedback - add double-tap prevention to save button - rename goToRenamePlaybookRun to goToEditPlaybookRun for consistency - add debug log when local DB update fails after successful API call Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com> * Update playbook run rename spacing * [MM-66995] Edit summary gatekeep (#9490) * gatekeeping summary edit * Fix playbook run summary edit gating * more tests * Use options object for playbook run edit --------- Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
11 lines
449 B
TypeScript
11 lines
449 B
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
export const MINIMUM_MAJOR_VERSION = 2;
|
|
export const MINIMUM_MINOR_VERSION = 3;
|
|
export const MINIMUM_PATCH_VERSION = 0;
|
|
|
|
// Minimum version required for summary editing feature
|
|
export const SUMMARY_EDIT_MINIMUM_MAJOR_VERSION = 2;
|
|
export const SUMMARY_EDIT_MINIMUM_MINOR_VERSION = 7;
|
|
export const SUMMARY_EDIT_MINIMUM_PATCH_VERSION = 0;
|