Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixed broken access control issue for account update #195

Merged
merged 3 commits into from Sep 16, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
fixed xss issue at datagrid
  • Loading branch information
naresh verma committed Sep 14, 2021
commit 882dc2e7e7e9149b96cf1ccacf34900960b92fb7
2 changes: 1 addition & 1 deletion packages/Webkul/UI/publishable/assets/js/ui.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/Webkul/UI/publishable/assets/mix-manifest.json
@@ -1,5 +1,5 @@
{
"/js/ui.js": "/js/ui.js?id=04e2fdebe8621c6953e2",
"/js/ui.js": "/js/ui.js?id=42bdc4ac52e1762101c3",
"/css/ui.css": "/css/ui.css?id=58acb02c87af96127d4b",
"/images/add-icon.svg": "/images/add-icon.svg?id=9135b4e0e1c239c36981",
"/images/align-justify-icon.svg": "/images/align-justify-icon.svg?id=ee8d48e636b80417a884",
Expand Down
Expand Up @@ -36,7 +36,7 @@
:key="rowIndex"
v-if="column.type != 'hidden'"
@click="redirectRow(row.redirect_url)"
v-html="getRowContent(row[column.index])"
v-text="getRowContent(row[column.index])"
:title="column.title ? row[column.index] : ''"
:class="[row.redirect_url ? 'cursor-pointer' : '', column.class || column.index ]"
></td>
Expand Down Expand Up @@ -174,7 +174,7 @@
type : "success",
message : response.data.message,
});

EventBus.$emit('refresh_table_data', {usePrevious: true});
}
}
Expand All @@ -189,4 +189,4 @@
}
}
};
</script>
</script>