remove unused logic in backend store

This commit is contained in:
Keviin Åberg Kultalahti 2021-02-19 14:59:47 +01:00
parent fa1a2c58c5
commit f9e519be9e
1 changed files with 0 additions and 6 deletions

View File

@ -239,7 +239,6 @@ export const getBackendUiStore = () => {
field, field,
primaryDisplay = false, primaryDisplay = false,
indexes, indexes,
relationshipType,
}) => { }) => {
store.update(state => { store.update(state => {
// delete the original if renaming // delete the original if renaming
@ -257,11 +256,6 @@ export const getBackendUiStore = () => {
state.draftTable.primaryDisplay = field.name state.draftTable.primaryDisplay = field.name
} }
// Set relationship type
if (field.type === "link") {
state.draftTable.relationshipType = relationshipType
}
if (indexes) { if (indexes) {
state.draftTable.indexes = indexes state.draftTable.indexes = indexes
} }