Skip to content

Commit

Permalink
Fix warning of sortable is undefined
Browse files Browse the repository at this point in the history
  • Loading branch information
SferaDev committed Sep 17, 2019
1 parent ad2b726 commit 900c7d5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/components/rules-list-page/SyncRulesPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,11 @@ class SyncRulesPage extends React.Component {
sortable: true,
getValue: ({ enabled }) => (enabled ? i18n.t("Enabled") : i18n.t("Disabled")),
},
{ name: "lastExecuted", text: i18n.t("Last executed") },
{
name: "lastExecuted",
text: i18n.t("Last executed"),
sortable: true,
},
];

detailsFields = [
Expand Down

0 comments on commit 900c7d5

Please sign in to comment.