-
Notifications
You must be signed in to change notification settings - Fork 14
BC-9862 - Create collabora documents on column board #3840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
if (form?.value) { | ||
const { valid } = await form.value.validate(); | ||
if (valid) { | ||
closeCollaboraFileDialog(); | ||
await collaboraFileSelectionOptions.value | ||
.find((item) => item.id === selectedDocType.value) | ||
?.action(fileName.value, caption.value); | ||
resetForm(); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (form?.value) { | |
const { valid } = await form.value.validate(); | |
if (valid) { | |
closeCollaboraFileDialog(); | |
await collaboraFileSelectionOptions.value | |
.find((item) => item.id === selectedDocType.value) | |
?.action(fileName.value, caption.value); | |
resetForm(); | |
} | |
} | |
const onConfirm = async () => { | |
if (!form?.value) return; | |
const { valid } = await form.value.validate(); | |
if (!valid) return; | |
closeCollaboraFileDialog(); | |
await collaboraFileSelectionOptions.value | |
.find((item) => item.id === selectedDocType.value) | |
?.action(fileName.value, caption.value); | |
resetForm(); | |
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes! liest sich eindeutig besser
@@ -0,0 +1,100 @@ | |||
import { FileRecordParentType } from "@/fileStorageApi/v3"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Falsches Casing bei Dateiname
@@ -0,0 +1,38 @@ | |||
import { useAddCollaboraFile } from "../shared/add-collabora-file.composable"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dateiname
@@ -0,0 +1,27 @@ | |||
import { useSharedFileSelect } from "../file-select.composable"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dateiname
|
Short Description
Create collabora documents from board
Links to Ticket and related Pull-Requests
https://ticketsystem.dbildungscloud.de/browse/BC-9862
Changes
Data-security
Deployment
New Repos, NPM packages or vendor scripts
Screenshots of UI changes
Checklist before merging