This commit is contained in:
Andrei Prigorshnev 2024-04-02 00:15:45 +04:00
parent 0ca2d22249
commit 19c2542499
No known key found for this signature in database
GPG Key ID: 185E0A5F45783902
4 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,5 @@
<Assignment <Assignment
@assigneeError={{this.assigneeError}}
@model={{@model}} @model={{@model}}
@note={{@model.note}} @note={{@model.note}}
@status={{@model.status}} @status={{@model.status}}

View File

@ -20,6 +20,7 @@ export default class AssignUserForm extends Component {
@action @action
async assign() { async assign() {
console.log("ass");
if (!this.assigneeName) { if (!this.assigneeName) {
this.assigneeError = true; this.assigneeError = true;
return; return;

View File

@ -1,4 +1,4 @@
<div class="control-group {{if this.assigneeError 'assignee-error'}}"> <div class="control-group {{if @assigneeError 'assignee-error'}}">
<label>{{i18n "discourse_assign.assign_modal.assignee_label"}}</label> <label>{{i18n "discourse_assign.assign_modal.assignee_label"}}</label>
<AssigneeChooser <AssigneeChooser
autocomplete="off" autocomplete="off"
@ -21,7 +21,7 @@
}} }}
/> />
{{#if this.assigneeError}} {{#if @assigneeError}}
<span class="error-label"> <span class="error-label">
{{d-icon "exclamation-triangle"}} {{d-icon "exclamation-triangle"}}
{{i18n "discourse_assign.assign_modal.choose_assignee"}} {{i18n "discourse_assign.assign_modal.choose_assignee"}}

View File

@ -31,7 +31,7 @@ export default class Assignment extends Component {
@action @action
setAssignee([newAssignee]) { setAssignee([newAssignee]) {
this.assignee = newAssignee; this.assignee = newAssignee;
// this.assigneeError = false; fixme andrei this.args.assigneeError = false;
if (this.taskActions.allowedGroupsForAssignment.includes(newAssignee)) { if (this.taskActions.allowedGroupsForAssignment.includes(newAssignee)) {
this.args.model.username = null; this.args.model.username = null;