Browse Source

fix: err msg typo

Signed-off-by: Wing-Kam Wong <wingkwong.code@gmail.com>
pull/1886/head
Wing-Kam Wong 2 years ago
parent
commit
ec1603818b
  1. 2
      packages/nc-gui/components/project/table.vue

2
packages/nc-gui/components/project/table.vue

@ -111,7 +111,7 @@ export default {
if (relationColumns.length) {
const refColMsgs = await Promise.all(relationColumns.map(async(c, i) => {
const refMeta = await this.$store.dispatch('meta/ActLoadMeta', { id: c.colOptions.fk_related_model_id })
return `${i + 1}. ${c.title} is a LinkToAnotherRecord of a ${(refMeta && refMeta.title) || c.title}`
return `${i + 1}. ${c.title} is a LinkToAnotherRecord of ${(refMeta && refMeta.title) || c.title}`
}))
this.$toast.info(`<div style="padding:10px 4px">Unable to delete tables because of the following.
<br><br>${refColMsgs.join('<br>')}<br><br>

Loading…
Cancel
Save