Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
818
Issues
818
List
Boards
Labels
Service Desk
Milestones
Merge Requests
72
Merge Requests
72
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
188167d2
Commit
188167d2
authored
1 hour ago
by
Olivia Madrid
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(wip): referrals console - delete test modal component
parent
62cb13d8
epic/referrals
1 merge request
!388
WIP: epic/referrals
Pipeline
#68864063
failed with stages
in 14 minutes and 46 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
31 deletions
+3
-31
conversation.component.html
...odules/messenger/conversation/conversation.component.html
+0
-1
conversation.component.ts
.../modules/messenger/conversation/conversation.component.ts
+3
-0
referrals.component.ts
src/app/modules/modals/referrals/referrals.component.ts
+0
-30
No files found.
src/app/modules/messenger/conversation/conversation.component.html
View file @
188167d2
...
...
@@ -9,7 +9,6 @@
<i
class=
"material-icons mdl-color-text--blue-grey-100"
[
hidden
]="
live
"
>
sync_problem
</i>
<i
class=
"material-icons"
(
click
)="
ribbonToggle
()"
[
ngClass
]="{
'
m-status-active
'
:
ribbon
.
open
}"
>
more_vert
</i>
<i
class=
"material-icons"
(
click
)="
dockpanes
.
close
(
conversation
)"
>
close
</i>
</div>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/messenger/conversation/conversation.component.ts
View file @
188167d2
...
...
@@ -375,4 +375,7 @@ export class MessengerConversation {
// otherwise if you click the icon when closed it opens the container
// but ribbon is closed
// OR allow dockpane and ribbon to open independently of one another
// removed this from html [ngClass]="{ 'm-status-active': ribbon.open }"
}
This diff is collapsed.
Click to expand it.
src/app/modules/modals/referrals/referrals.component.ts
deleted
100644 → 0
View file @
62cb13d8
import
{
Component
,
EventEmitter
}
from
'
@angular/core
'
;
import
{
ReferralsLinksComponent
}
from
'
../../wallet/tokens/referrals/links/links.component
'
;
@
Component
({
selector
:
'
m-modal-referrals
'
,
inputs
:
[
'
open
'
],
outputs
:
[
'
closed
'
],
template
:
`
<m-modal class="m-modal-referrals" [open]="open" (closed)="close($event)">
<m-referrals--links [isModal]="true"></m-referrals--links>
</m-modal>
`
})
export
class
ReferralsModal
{
open
:
boolean
=
false
;
closed
:
EventEmitter
<
any
>
=
new
EventEmitter
();
constructor
()
{
}
ngOnInit
()
{
}
close
(
e
?)
{
this
.
open
=
false
;
this
.
closed
.
next
(
true
);
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment