9 lines
217 B
Svelte
9 lines
217 B
Svelte
|
|
<script>
|
||
|
|
import {Meteor} from "meteor/meteor";
|
||
|
|
|
||
|
|
const fixRecords = () => {Meteor.call("admin.fixRecords");}
|
||
|
|
</script>
|
||
|
|
<div class="container">
|
||
|
|
<button type="button" on:click={fixRecords}>Fix Records</button>
|
||
|
|
</div>
|