Fix test order
This commit is contained in:
parent
e00002757e
commit
15ad884ac8
|
@ -324,7 +324,9 @@ export async function update(
|
||||||
return pickApi(tableId).update(tableId, view)
|
return pickApi(tableId).update(tableId, view)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const isV2 = helpers.views.isV2
|
export function isV2(view: View | ViewV2) {
|
||||||
|
return helpers.views.isV2(view)
|
||||||
|
}
|
||||||
|
|
||||||
export async function remove(viewId: string): Promise<ViewV2> {
|
export async function remove(viewId: string): Promise<ViewV2> {
|
||||||
const { tableId } = utils.extractViewInfoFromID(viewId)
|
const { tableId } = utils.extractViewInfoFromID(viewId)
|
||||||
|
|
Loading…
Reference in New Issue