Skip to content

Commit

Permalink
fix(web-ui): add missing translation (#976)
Browse files Browse the repository at this point in the history
* fix(api): fix foreign key

* fix(web-ui): add missing translation

---------

Co-authored-by: Johan Book <{ID}+{username}@users.noreply.github.com>
  • Loading branch information
johanbook and Johan Book authored Nov 24, 2024
1 parent 4c08ff5 commit 5264f3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { Organization } from "./organization.entity";
@Entity()
export class ActiveOrganization extends BaseEntity {
@ManyToOne(() => Organization, { onDelete: "SET NULL" })
organization!: Organization;
organization?: Organization;

@Column()
organizationId!: number;
Expand Down
4 changes: 4 additions & 0 deletions services/web-ui/public/locales/en/organization.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
},
"settings": {
"header": "Settings",
"delete": {
"header": "Delete group",
"button": "Delete"
},
"description": "Here you can change settings of your group.",
"name": "Name",
"save": {
Expand Down

0 comments on commit 5264f3a

Please sign in to comment.