Skip to content
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

[#57648] Replace "Add assignee" button in Team Planner with + icon #16770

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/user-guide/team-planner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ A team planner has a number of features numbered 1 to 8 in the above screenshot:

1. Click on the name of your team planner (*Marketing Team* in the example above) to edit it. Unless it's a new team planner, this change has to be confirmed by pressing the floppy disk icon that appears next to the name after you change it.
2. Use the **+ Add existing** button to add an existing work package to the team planner. You do this by searching for work package and dragging its card to an assignee, at a certain time. This will then update the *assignee*, *start date* and *finish date* attributes of that work package.
3. Add a new team member to the assignee column by Clicking on the **Add assignee** button.
3. Add a new team member to the assignee column by Clicking on the **+ Assignee** button.
4. By default, the team planner will only show assigned work packages belonging to the current project. However, it is possible to also add assigned work packages belonging to other projects. You can make these work packages from other projects visible by using **Include projects** feature and selecting additional projects to be included in this view.
5. Use the **Filter** feature (same as in the [work packages](../work-packages/work-package-table-configuration/#filter-work-packages) module) to display only work packages that meet certain filter criteria. You could, for example, filter such that only work packages of certain types, certain status or certain custom field values are visible.
6. The **Fullscreen** button lets you view the team planner in fullscreen mode.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,12 @@
class="op-team-planner--empty-state-button button -primary"
data-test-selector="op-team-planner--empty-state-button"
(click)="showAssigneeAddRow()"
[textContent]="text.add_assignee"
>
<op-icon icon-classes="icon-add button--icon"></op-icon>
<span
class="button--text"
[textContent]="text.add_assignee">
</span>
</button>
</div>
</ng-container>
Expand All @@ -153,8 +157,11 @@
data-test-selector="tp-assignee-add-button"
data-tour-selector="tp-assignee-add-button"
>
<span class="spot-icon spot-icon_user-plus"></span>
<span [textContent]="text.add_assignee"></span>
<op-icon icon-classes="icon-add button--icon"></op-icon>
<span
class="button--text"
[textContent]="text.add_assignee">
</span>
</button>
</div>
<ng-container *ngIf="(dropzone$ | async) as dropzone">
Expand Down
2 changes: 1 addition & 1 deletion modules/team_planner/config/locales/js-en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ en:
create_title: 'Create new team planner'
unsaved_title: 'Unnamed team planner'
no_data: 'Add assignees to set up your team planner.'
add_assignee: 'Add assignee'
add_assignee: 'Assignee'
remove_assignee: 'Remove assignee'
two_weeks: '2-week'
one_week: '1-week'
Expand Down