Code review comment for lp:~fboucault/camera-app/ui_rewrite

Revision history for this message
Olivier Tilloy (osomon) wrote :

1538 + property list<Action> actions: [
1539 + Action {
1540 + text: i18n.tr("Share")
1541 + iconName: "share"
1542 + onTriggered: PopupUtils.open(sharePopoverComponent)
1543 + },
1544 + Action {
1545 + text: i18n.tr("Delete")
1546 + iconName: "delete"
1547 + onTriggered: PopupUtils.open(deleteDialogComponent)
1548 + }
1549 + ]

The indentation isn’t correct here.

« Back to merge proposal