-
Notifications
You must be signed in to change notification settings - Fork 0
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
create project page fixes #157
Conversation
nieuwe alembic op db nodig (enkel op mijn db aangepast) |
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.
i18n vergeten
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.
publish_date
doet nog altijd niets, er wordt nog naaris_visible
ipvpublish_date
- wanneer het project aangemaakt is moet er geredirect worden naar de view. nu gebeurd er niets.
- nog i18n ontbreekt voor sommige tekst
- nog niet mogelijk om requirements toe te voegen
const quillEditor = ref<typeof QuillEditor | null>(null); | ||
|
||
watch(deadline, (newValue, oldValue) => { | ||
console.log(`Deadline changed from ${oldValue.toISOString()} to ${newValue.toISOString()}`); |
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.
Enige reden voor al die console.log? mag van mij allemaal weg
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.
ja nee idd nie echt reden voor ma da deed ff funky en vergeten weghalen uit debug
"""empty message | ||
|
||
Revision ID: 1c4eb2b9d8da | ||
Revises: 20886268d8b4, aa8ad1b4f8dc | ||
Create Date: 2024-04-15 20:24:46.151762 | ||
|
||
""" | ||
from typing import Sequence, Union | ||
|
||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision: str = '1c4eb2b9d8da' | ||
down_revision: Union[str, None] = ('20886268d8b4', 'aa8ad1b4f8dc') | ||
branch_labels: Union[str, Sequence[str], None] = None | ||
depends_on: Union[str, Sequence[str], None] = None | ||
|
||
|
||
def upgrade() -> None: | ||
pass | ||
|
||
|
||
def downgrade() -> None: | ||
pass |
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.
Er zijn 7 alembic versions (allemaal) die niets doen -> mogen allemaal weg. Dus eig is er geen verandering in databank.
:items="assistants" | ||
description="Assign Assistants" | ||
/> | ||
<span v-else>No assistants found.</span> |
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.
hierboven staat al no instructors found
wat is het verschil?
console.error("File upload failed", error); | ||
alert("Could not upload files. Please try again."); |
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.
miss een vuetify alert ipv een alert box?
} catch (error) { | ||
console.error("Error during project or group creation:", error); | ||
console.error("Error during project or group creation or file upload:", error); |
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.
hier ook een vuetify alert ipv in console
|
# Conflicts: # frontend/src/queries/Project.ts # frontend/src/services/project.ts
gdn |
requested fixes finished