Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: statistics dropdown wire ignore #883

Merged
merged 9 commits into from
Jul 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions public/css/app.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/js/app.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions public/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"/js/manifest.js": "/js/manifest.js?id=7db827d654313dce4250",
"/js/app.js": "/js/app.js?id=2bbc754799dd0c251305",
"/css/app.css": "/css/app.css?id=aae737d4856bbbc70b50",
"/js/app.js": "/js/app.js?id=2ba3f0ce913d5f4fe3d7",
"/css/app.css": "/css/app.css?id=fb6e4ac1f0b5c94adeee",
"/js/vendor.js": "/js/vendor.js?id=d2021daf9ac3eabd5cad",
"/js/chart.js": "/js/chart.js?id=7586599b1f0b0adf2df2",
"/js/clipboard.js": "/js/clipboard.js?id=99d052d4c54fa6c91edc"
Expand Down
20 changes: 11 additions & 9 deletions resources/views/components/stats/insight.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,17 @@
</div>

<div class="pt-6 w-full border-t border-theme-secondary-300 dark:border-theme-secondary-800">
<x-ark-rich-select
wire:model="{{ $model }}"
wrapper-class="relative left-0 xl:inline-block"
dropdown-class="left-0 mt-1 origin-top-left"
button-class="block text-sm font-semibold text-left bg-transparent text-theme-secondary-700 dark:text-theme-secondary-200"
:initial-value="$selected"
:placeholder="$selected"
:options="$options"
/>
<div wire:ignore>
<x-ark-rich-select
wire:model="{{ $model }}"
wrapper-class="relative left-0 xl:inline-block"
dropdown-class="left-0 mt-1 origin-top-left"
button-class="block text-sm font-semibold text-left bg-transparent text-theme-secondary-700 dark:text-theme-secondary-200"
:initial-value="$selected"
:placeholder="$selected"
:options="$options"
/>
</div>

<div class="flex flex-col gap-5 sm:flex-row sm:items-end xl:w-full @if($chart) sm:justify-between @endif">
<div class="">
Expand Down