mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-22 02:36:02 +02:00
Fix bug where domain request could not delete
This commit is contained in:
parent
11db76496a
commit
46d3f9f0b4
1 changed files with 1 additions and 1 deletions
|
@ -1970,7 +1970,7 @@ class DomainRequestsTable extends BaseTable {
|
|||
modalHeading = `Are you sure you want to delete ${requested_domain}?`;
|
||||
modalDescription = 'This will remove the domain request from the .gov registrar. This action cannot be undone.';
|
||||
} else {
|
||||
if (request.created_at) {
|
||||
if (created_at) {
|
||||
modalHeading = 'Are you sure you want to delete this domain request?';
|
||||
modalDescription = `This will remove the domain request (created ${utcDateString(created_at)}) from the .gov registrar. This action cannot be undone`;
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue