Are you sure you want to unarchive {projectToUnarchive?.name}?
-This will move the project back to your active projects list.
- -- {camelize(currentTable.name)} can contain {[ - 'oneToOne', - 'manyToOne' - ].includes(data.relationType) - ? 'one' - : 'many'} - {camelize(data.key)} -
-- {camelize(data.key)} - can belong to {['oneToOne', 'oneToMany'].includes(data.relationType) - ? 'one' - : 'many'} - {camelize(currentTable.name)} -
+ {#if isManySide} ++ {camelize(currentTable.name)} can belong to one + {camelize(data.key)} +
++ {camelize(data.key)} can have many + {camelize(currentTable.name)} +
+ {:else} ++ {camelize(currentTable.name)} can contain {[ + 'oneToOne', + 'manyToOne' + ].includes(data.relationType) + ? 'one' + : 'many'} + {camelize(data.key)} +
++ {camelize(data.key)} + can belong to {['oneToOne', 'oneToMany'].includes(data.relationType) + ? 'one' + : 'many'} + {camelize(currentTable.name)} +
+ {/if}
From 33c435bfef1c1faec690043ba5ca6f4a05766c70 Mon Sep 17 00:00:00 2001
From: Harsh Mahajan