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

✨ Edit a Bot #103 #113

Merged
merged 36 commits into from
Nov 8, 2022
Merged
Changes from 1 commit
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
1be3cd3
:sparkles: feat(modal) Add modal to edit bot details
AnnaL001 Oct 25, 2022
c9b6d3b
:sparkles: feat(modal) Add translations for edit bot modal
AnnaL001 Oct 25, 2022
7b71545
:art: (refactor) Remove unused code
AnnaL001 Oct 25, 2022
44047b3
:sparkles: feat(modal) Populate edit bot form with current bot details
AnnaL001 Oct 25, 2022
e1f4521
:sparkles: feat(modal) Add functionality to update bot details
AnnaL001 Oct 26, 2022
4c6a78d
:art: refactor(modal) Update translations for edit bot form
AnnaL001 Oct 26, 2022
b53911b
:lipstick: refactor(modal) Add styling for edit bot form fields
AnnaL001 Oct 26, 2022
edc76e4
:art: (refactor) Remove unused code
AnnaL001 Oct 26, 2022
5b89fb9
:art: (refactor) Update order of imports as per guidelines
AnnaL001 Oct 26, 2022
2bf47c7
:art: (refactor) Rename method to open edit bot dialog
AnnaL001 Oct 26, 2022
a057ab4
:lipstick: (refactor) Update custom styling of edit bot dialog and cr…
AnnaL001 Oct 26, 2022
cb56fb6
Merge branch 'main' into edit-bot#103
AnnaL001 Oct 27, 2022
f3ed777
:truck: (refactor) Rename environment file inport path
AnnaL001 Oct 27, 2022
6e76543
:recycle: (refactor) Update bot card component
AnnaL001 Oct 27, 2022
8dccf96
:lipstick: refactor(modal) Update styling of edit bot dialog
AnnaL001 Oct 27, 2022
271e9cd
:recycle: (refactor) Update method returning modal modes
AnnaL001 Oct 30, 2022
fbf3da9
:bulb: Add comments to source code
AnnaL001 Oct 30, 2022
e5dd9cb
Merge branch 'main' into edit-bot#103
AnnaL001 Nov 1, 2022
579dd33
:sparkles: feat(modal) Update feature to open edit bot dialog
AnnaL001 Nov 1, 2022
2329d63
Merge branch 'italanta:main' into edit-bot#103
AnnaL001 Nov 1, 2022
75de161
:recycle: (refactor) Update edit bot functionality
AnnaL001 Nov 1, 2022
6bdef77
:recycle: (refactor) Remove unused code
AnnaL001 Nov 1, 2022
dafe9ca
Merge branch 'italanta:main' into edit-bot#103
AnnaL001 Nov 2, 2022
6fa83e5
Merge branch 'edit-bot-2#103' into edit-bot#103
AnnaL001 Nov 2, 2022
beb32dd
:recycle: refactor(modal) Update functionality to open edit bot dialog
AnnaL001 Nov 3, 2022
eb6fbf2
:lipstick: refactor(modal) Update styling of edit bot dialog
AnnaL001 Nov 3, 2022
05f5069
:recycle: refactor(modal) Update functionality to edit bot details
AnnaL001 Nov 3, 2022
1e81c9f
:art: (style) Update code format
AnnaL001 Nov 3, 2022
a13f287
:lipstick: (refactor) Add translations for toast message
AnnaL001 Nov 3, 2022
5957699
Merge branch 'main' into edit-bot#103
AnnaL001 Nov 7, 2022
4adac34
Merge branch 'main' into edit-bot#103
AnnaL001 Nov 7, 2022
727290c
Merge branch 'edit-bot#103' of https://github.com/AnnaL001/italanta i…
AnnaL001 Nov 7, 2022
a519eef
Merge branch 'main' into edit-bot#103
AnnaL001 Nov 8, 2022
a446b04
:art: (style) Remove spacing
AnnaL001 Nov 8, 2022
f771d8c
:bug::lipstick: (fix) Update functionality to open create bot dialog
AnnaL001 Nov 8, 2022
8953b2f
Merge branch 'edit-bot#103' of https://github.com/AnnaL001/italanta i…
AnnaL001 Nov 8, 2022
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
Prev Previous commit
Next Next commit
Merge branch 'main' into edit-bot#103
  • Loading branch information
AnnaL001 committed Nov 1, 2022
commit e5dd9cbcf05677d05607e6d115f82854020dcfb5
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,18 @@ <h2 class="bot">
{{ story.name }} <span class="bot-number"></span>
</h2>
</div>

<div class="dots" (click)="openEditDialog()">
<i class="fas dotedIcon"></i>
</div>
<button mat-icon-button [matMenuTriggerFor]="menu">
<i class="fas fa-ellipsis-v"></i>
</button>
<mat-menu #menu="matMenu">
<button mat-menu-item class="bot-menu-item">
<span>Edit</span>
</button>
<hr class="bot-menu-item-separator"/>
<button mat-menu-item class="bot-menu-item">
<span>Delete</span>
</button>
</mat-menu>
</div>

<mat-card-content>
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.