adjust table sizing and switch column position
This commit is contained in:
parent
3e7c1d10cf
commit
7f35961e77
|
@ -31,8 +31,8 @@
|
||||||
const schema = {
|
const schema = {
|
||||||
date: { width: "0.8fr" },
|
date: { width: "0.8fr" },
|
||||||
user: { width: "0.5fr" },
|
user: { width: "0.5fr" },
|
||||||
|
name: { width: "2fr", displayName: "Event" },
|
||||||
app: { width: "1.5fr" },
|
app: { width: "1.5fr" },
|
||||||
name: { width: "2fr" },
|
|
||||||
view: { width: "0.1fr", borderLeft: true, displayName: "" },
|
view: { width: "0.1fr", borderLeft: true, displayName: "" },
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -270,7 +270,7 @@
|
||||||
<Multiselect
|
<Multiselect
|
||||||
autocomplete
|
autocomplete
|
||||||
placeholder="All apps"
|
placeholder="All apps"
|
||||||
label="App"
|
label="Apps"
|
||||||
getOptionValue={app => app.instance._id}
|
getOptionValue={app => app.instance._id}
|
||||||
getOptionLabel={app => app.name}
|
getOptionLabel={app => app.name}
|
||||||
options={sortedApps}
|
options={sortedApps}
|
||||||
|
@ -285,7 +285,7 @@
|
||||||
getOptionLabel={event => event.label}
|
getOptionLabel={event => event.label}
|
||||||
options={sortedEvents}
|
options={sortedEvents}
|
||||||
placeholder="All events"
|
placeholder="All events"
|
||||||
label="Event"
|
label="Events"
|
||||||
bind:value={selectedEvents}
|
bind:value={selectedEvents}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue