Skip to content

Commit 2470806

Browse files
authored
Merge pull request #177 from matomo-org/PG-3416-combine-actions-into-single-column
Combine actions into one column
2 parents 7a15dd5 + 73ea03f commit 2470806

File tree

5 files changed

+19
-25
lines changed

5 files changed

+19
-25
lines changed

tests/UI/CustomAlerts_spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ describe("CustomAlerts", function () {
7272
});
7373

7474
it('should show delete dialog', async function () {
75-
await page.click('tbody tr:first-child td.delete button');
75+
await page.click('tbody tr:first-child td button.deleteAlert');
7676
await page.waitForTimeout(350); // wait for animation
7777
var elem = await page.jQuery('.modal.open');
7878
expect(await elem.screenshot()).to.matchImage('delete');
Loading

vue/dist/CustomAlerts.umd.js

+16-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vue/dist/CustomAlerts.umd.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vue/src/ListAlerts/ListAlerts.vue

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
<th>{{ translate('General_Website') }}</th>
1414
<th>{{ translate('General_Period') }}</th>
1515
<th>{{ translate('General_Report') }}</th>
16-
<th>{{ translate('General_Edit') }}</th>
17-
<th>{{ translate('General_Delete') }}</th>
16+
<th>{{ translate('General_Actions') }}</th>
1817
</tr>
1918
</thead>
2019
<tbody>
@@ -40,8 +39,6 @@
4039
})"
4140
:title="translate('General_Edit')"
4241
></a>
43-
</td>
44-
<td class="delete">
4542
<button
4643
class="deleteAlert table-action"
4744
@click="deleteAlert(alert.idalert)"

0 commit comments

Comments
 (0)