iconograph-ui 1.3.0 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
</div>
|
|
23
23
|
|
|
24
24
|
<div class="bottom" >
|
|
25
|
-
|
|
26
|
-
<
|
|
27
|
-
|
|
25
|
+
{#each menu.bottom as item}
|
|
26
|
+
<MenuItem item={item}></MenuItem>
|
|
27
|
+
{/each}
|
|
28
28
|
</div>
|
|
29
29
|
</nav>
|
|
30
30
|
|
|
@@ -81,4 +81,4 @@
|
|
|
81
81
|
width: 30px;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
</style>
|
|
84
|
+
</style>
|
package/lib/table/Table.svelte
CHANGED
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
async function getData() {
|
|
50
50
|
waiting = true;
|
|
51
51
|
|
|
52
|
-
const response = await fetch(`${uri}?limit=${limit}&offset=${page}`, {
|
|
52
|
+
const response = await fetch(`${uri}?limit=${limit}&offset=${(page - 1) * limit}`, {
|
|
53
53
|
method: 'GET',
|
|
54
54
|
headers: { 'Content-Type': 'application/json' }
|
|
55
55
|
});
|