1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-07-20 14:38:04 +00:00

Renamed one more method

This commit is contained in:
2023-01-17 09:50:15 +01:00
parent 3c4437cbbb
commit 68017e19b1
4 changed files with 9 additions and 9 deletions

View File

@ -1,7 +1,7 @@
<script>
import { input } from '../../../actions';
import { createEventDispatcher } from 'svelte';
import { PerformInsert } from '../../../../wailsjs/go/app/App';
import { InsertItems } from '../../../../wailsjs/go/app/App';
export let collection;
@ -10,7 +10,7 @@
let insertedIds;
async function insert() {
insertedIds = await PerformInsert(collection.hostKey, collection.dbKey, collection.key, json);
insertedIds = await InsertItems(collection.hostKey, collection.dbKey, collection.key, json);
}
function showDocs() {