fix(API/index.ts): change status values from lowercase "public" and "private" to uppercase "Public" and "Private" for consistency and clarity
This commit is contained in:
parent
59da74baa9
commit
ffdb7e1677
1 changed files with 1 additions and 1 deletions
|
|
@ -569,7 +569,7 @@ export async function saveFlowStore(
|
|||
is_component: newFlow.is_component,
|
||||
parent: newFlow.parent,
|
||||
tags: tags,
|
||||
status: publicFlow ? "public" : "private",
|
||||
status: publicFlow ? "Public" : "Private",
|
||||
last_tested_version: newFlow.last_tested_version,
|
||||
});
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue