Skip to content

Commit

Permalink
Remove not working variable (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
ah-net authored Dec 22, 2022
1 parent 1fa05e8 commit fe088a5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Ui/Component/Listing/Column/OverviewPageActions.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ public function prepareDataSource(array $dataSource)
),
'label' => __('Delete'),
'confirm' => [
'title' => __('Delete "${ $.$data.title }"'),
'message' => __('Are you sure you wan\'t to delete a "${ $.$data.title }" record?')
'title' => __('Delete overviewpage'),
'message' => __('Are you sure you wan\'t to delete this overviewpage?')
]
]
];
Expand Down
5 changes: 3 additions & 2 deletions src/Ui/Component/Listing/Column/PageActions.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,14 @@ public function prepareDataSource(array $dataSource)
'href' => $this->urlBuilder->getUrl(
static::URL_PATH_DELETE,
[

'page_id' => $item['page_id']
]
),
'label' => __('Delete'),
'confirm' => [
'title' => __('Delete "${ $.$data.title }"'),
'message' => __('Are you sure you wan\'t to delete a "${ $.$data.title }" record?')
'title' => __('Delete this page'),
'message' => __('Are you sure you wan\'t to delete this page?')
]
]
];
Expand Down

0 comments on commit fe088a5

Please sign in to comment.