mirror of https://github.com/Chocobozzz/PeerTube
Fix email action button label for reports
parent
a65858746c
commit
3329325a64
|
@ -39,7 +39,7 @@ export abstract class AbstractNewAbuseMessage extends AbstractNotification <NewA
|
||||||
: WEBSERVER.URL + '/my-account/abuses?search=%23' + this.abuse.id
|
: WEBSERVER.URL + '/my-account/abuses?search=%23' + this.abuse.id
|
||||||
|
|
||||||
const action = {
|
const action = {
|
||||||
text,
|
text: 'View report #' + this.abuse.id,
|
||||||
url: abuseUrl
|
url: abuseUrl
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -51,7 +51,7 @@ export class AbuseStateChangeForReporter extends AbstractNotification <MAbuseFul
|
||||||
const abuseUrl = WEBSERVER.URL + '/my-account/abuses?search=%23' + this.abuse.id
|
const abuseUrl = WEBSERVER.URL + '/my-account/abuses?search=%23' + this.abuse.id
|
||||||
|
|
||||||
const action = {
|
const action = {
|
||||||
text,
|
text: 'View report #' + this.abuse.id,
|
||||||
url: abuseUrl
|
url: abuseUrl
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue