Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bokkypoobah committed Dec 17, 2023
1 parent 117cc2d commit 570f8b4
Showing 1 changed file with 3 additions and 23 deletions.
26 changes: 3 additions & 23 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -328,8 +328,8 @@
</div>
<div class="mt-0 flex-grow-1">
</div>
<div v-if="settings.tabIndex == 110" class="mt-0 pl-1">
<b-form-select size="sm" v-model="settings.activityTable.sortOption" @change="saveSettings" :options="activitySortOptions" v-b-popover.hover.bottom="'Yeah. Sort'"></b-form-select>
<div class="mt-0 pl-1">
<b-form-select size="sm" v-model="settings.eventsTable.sortOption" @change="saveSettings" :options="eventsSortOptions" v-b-popover.hover.bottom="'Yeah. Sort'"></b-form-select>
</div>
<div v-if="settings.tabIndex == 110" class="mt-0 pl-1">
<font size="-2" v-b-popover.hover.bottom="'# events'">{{ filteredSortedEvents.length + '/' + Object.keys(txs).length }}</font>
Expand Down Expand Up @@ -604,30 +604,10 @@ <h4>Welcome</h4>
txFee: null,
txFeeInReportingCurrency: null,
},
punksSortOptions: [
{ value: 'punkidasc', text: '▲ PunkId' },
{ value: 'punkiddsc', text: '▼ PunkId' },
],
activitySortOptions: [
eventsSortOptions: [
{ value: 'txorderasc', text: '▲ TxOrder' },
{ value: 'txorderdsc', text: '▼ TxOrder' },
],
ownersSortOptions: [
{ value: 'count1asc', text: '▲ Σv1 Punks' },
{ value: 'count1dsc', text: '▼ Σv1 Punks' },
{ value: 'count2asc', text: '▲ Σv2 Punks' },
{ value: 'count2dsc', text: '▼ Σv2 Punks' },
{ value: 'count12asc', text: '▲ Σv1 & v2 Punks' },
{ value: 'count12dsc', text: '▼ Σv1 & v2 Punks' },
{ value: 'accountasc', text: '▲ Account' },
{ value: 'accountdsc', text: '▼ Account' },
],
contractOptions: [
{ text: 'v1', value: 1 },
{ text: 'v2', value: 2 },
{ text: 'w1', value: 3 },
{ text: 'w2', value: 4 }
],
pageSizes: [
{ value: 5, text: '5' },
{ value: 10, text: '10' },
Expand Down

0 comments on commit 570f8b4

Please sign in to comment.