This project is mirrored from https://github.com/metabase/metabase.
Pull mirroring updated .
- Feb 13, 2024
-
-
Noah Moss authored
-
metamben authored
-
Jesse Devaney authored
* Add fixed width behavior to dashboard header * refactor fixed width styled component * adjust margin to match full-app margin * make styles consistent across public/embed and full-app dashboards * Make public/embed dashboard headers fixed width * add fixed width header behavior to x-ray dashboards * fix dashboard headers button alignment * add tests * add parameter to dashboard to test fixed width behavior * fix tab alignment in public dashboards * refactor tests * only render container when dashboardTabs is not null * improve styled component naming * make dashboard tabs styling consistent between public/embed and full-app dashboards * make dashboard info sidebar width consistent with other dashboard sidebars * align dashboard header and dashboard body position when dashboard sidebar is open * refactor tests
-
Anton Kulyk authored
-
Jeff Bruemmer authored
-
Mahatthana (Kelvin) Nomsawadi authored
* Fix case where Metabase links are render inside template strings * Add `no-literal-metabase-strings` ESLint rule * Fix all Metabase string errors * Address review: Fix the rule The rule was checking if we have imported the selector `getApplicationName` then ignore all Metabase strings. This is different than `no-unconditional-metabase-links-render` because in that rule, when fixed the Documentation URLs are still in the file, but in this rule, when fixed, there should be no Metabase strings left in the file. * Fix errors from the new lint rule
-
Sloan Sparger authored
-
-
Jeff Bruemmer authored
-
Uladzimir Havenchyk authored
* Do not show Unknown field in parameter mappings if there is mapping * Rework to MLv2 * handle virtual cards separately * WIP * fixup * Rework the approach * cleanup * Fix unit test * fixup! Fix unit test * keep only one -1 * Add a test * Split tests into groups * Improve tests * Move code to utils * Make types more flexible * Test * Test * Normalize target * Add more tests
-
Kamil Mielnik authored
* Removed unused route * Remove invalid test * Remove invalid routes from isNavigationAllowed, update tests * Remove invalid route * Handle /model/:id/notebook route * Migrate Question.prototype.isDataset to Question.prototype.type * Consolidate code * Add missing attribute * Type cards and questions for extra safety * Fix running edited models * Improve diff
-
Chris Truter authored
-
Chris Truter authored
Gotta go fast and gotta stay safe. We have 413 calls to with-redefs, so I'm not going to try get 'em all yet.
-
Romeo Van Snick authored
-
- Feb 12, 2024
-
-
Sloan Sparger authored
* disables password reset button in admin after the user has clicked the button once * add email throttle * fix test --------- Co-authored-by:
Jerry Huang <jhuang37050@gmail.com>
-
Braden Shepherdson authored
This test has been flaky due to checking its assertion before waiting for the cards on the dashboard to refresh based on the newly added or set filter. This waits for the hourglass icon `loading-spinner` to be gone before checking that the table is properly filtered. [Example failure](https://app.replay.io/recording/e2etestscenariosdashboard-filtersdashboard-filters-idcyspecjs--83043eb8-690e-482e-9108-a24455b4942f)
-
Mark Bastian authored
* Showing currency_in_header options in admin for fields The Table Metadata > Database Name > Table Name > Field Name > Formatting view did not show `Where to display the unit of currency` due to the following previous logic: ``` getHidden: (column, settings, { series }) => settings["number_style"] !== "currency" || series[0].card.display !== "table" ``` The second clause, `series[0].card.display !== "table"`, always returned true since `series[0].card.display` is `undefined`. This has been updated to: ``` getHidden: (column, settings, { series }) => settings["number_style"] !== "currency" && (!series[0].card.display || series[0].card.display === "table") ``` The requirement for hiding this option is now: 1. The series number style must not be currency 2. If the series is currency, the card display type must either be undefined or of type table. Fixes #38021 * Fixing viz settings helper when radiogroup is ambiguous. * add forAdminSettings prop in extraData of column settings --------- Co-authored-by:
Nick Fitzpatrick <nickfitz.582@gmail.com>
-
Nemanja Glumac authored
* Use "filled" bookmark icon when the item is bookmarked * Update E2E tests * Update the affected unit test * Make dashboard header icons smaller and darker * Make dashboard bookmark icon look like its neighbors * Unify question and dashboard icon's background on hover Question icons have been using `text-medium` unlike dashboard icons that had `text-light`.
-
Uladzimir Havenchyk authored
* Rework findColumnSettingIndexForColumn to MLv2 * WIP * correct test * Update frontend/src/metabase-lib/queries/utils/dataset.ts Co-authored-by:
Kamil Mielnik <kamil@kamilmielnik.com> * Update frontend/src/metabase-lib/queries/utils/dataset.ts Co-authored-by:
Kamil Mielnik <kamil@kamilmielnik.com> * Address review --------- Co-authored-by:
Kamil Mielnik <kamil@kamilmielnik.com>
-
Braden Shepherdson authored
If present. Also adds these fields to the TS types.
-
Ryan Laurie authored
Co-authored-by:
Raphael Krut-Landau <raphael.kl@gmail.com>
-
Sloan Sparger authored
-
Sloan Sparger authored
-
metamben authored
* Compare datetimes w/o timezone fields with literals as strings
-
Luis Paolini authored
On 2.36, Bigquery fixed some issue around the location where the jobid was being sent. This will allow us to do https://github.com/metabase/metabase/issues/21309 changelog https://github.com/googleapis/java-bigquery/blob/main/CHANGELOG.md
-
Mark Bastian authored
* source-field populated in aggregates with foreign refs When aggregates are populated that reference other tables, either a `:source-field` must be provided in the field metadata or a `:join-alias` needs to be provided. The former is preferred. Prior to this PR, the first situation in the below simplified case could happen: ```clojure ;;Simplified case ;; busted (qp/process-query {:database 1, ;; 59 is "PRODUCTS" -> "PRICE" which is not in the "REVIEWS" table :query {:aggregation [["sum" ["field" 59 {:base-type "type/Float"}]]] ;; "REVIEWS" :source-table 8}, :type "query"}) ; Works (qp/process-query {:database 1, ;; The `:source-field` metadata fixes the above query :query {:aggregation [["sum" ["field" 59 {:base-type "type/Float" ;; "REVIEWS" -> "PRODUCT_ID" :source-field 71}]]] :source-table 8}, :type "query"}) ``` This PR updates `metabase.automagic-dashboards.interestin/ground-metric` to use the `->reference` function for fields when building the `decoder` for transforming field names to references, which properly adds sources for external fields. Fixes #38618 * Updating `grounded-metrics-test` to reflect updated field referencing.
-
Nemanja Glumac authored
* Remove unused `clearFields` method on a `Join` prototype * Remove unused `remove` method from the `Join` prototype * Remove unused `removeJoin` method and helper * Remove unused `replace` method from the `Join` prototype * Remove unused `updateJoin` method and helper * Remove more potentially unused methods from the `Join` prototype * Mark `joinedTable` method as private
-
Cal Herries authored
-
Nicolò Pretto authored
* should make test pass in release when we have a specific version in the url * fix eslint error
-
Kamil Mielnik authored
* Add routing to State * Introduce getLocation selector * Shorten code * Do not export local selector * Update frontend/src/metabase/selectors/routing.ts Co-authored-by:
Uladzimir Havenchyk <125459446+uladzimirdev@users.noreply.github.com> --------- Co-authored-by:
Uladzimir Havenchyk <125459446+uladzimirdev@users.noreply.github.com>
-
Mahatthana (Kelvin) Nomsawadi authored
* Fix linking to public or embed resource on dashboards not working * Update embedding test name to use a snazzier term * Add tests
-
Chris Truter authored
-
- Feb 11, 2024
-
-
Nick Fitzpatrick authored
* don't lower dashboard title when there is no last edit info * same with questions
-
Nick Fitzpatrick authored
* adding links with hardcoded IDs * add audit-info endpoint * fix perms * Fetching Dashboard IDs from the API * e2e tests * add BE tests * kinda busted * InstanceAnalyticsButton * removing unused file * Update enterprise/backend/src/metabase_enterprise/audit_app/api/user.clj Co-authored-by:
Noah Moss <32746338+noahmoss@users.noreply.github.com> --------- Co-authored-by:
Jerry Huang <jhuang37050@gmail.com> Co-authored-by:
Jerry Huang <34140255+qwef@users.noreply.github.com> Co-authored-by:
Noah Moss <32746338+noahmoss@users.noreply.github.com>
-
- Feb 10, 2024
-
-
Ryan Laurie authored
* Connection Impersonation for Redshift * redshift test based on the existing postgres one * fix test * fix test * change impersonation UI for redshift * copy/style updates * update tests for new copy * update copy * lets tweak it even more --------- Co-authored-by:
Noah Moss <noahbmoss@gmail.com>
-
- Feb 09, 2024
-
-
Jerry Huang authored
* add BE for billing status * add BE for billing status * fix whitespace * fix english * address comments * fix whitespace * fix comments * update design * update design * add test * consume json error * address comments * update url
-
Jeff Bruemmer authored
-
John Swanson authored
Sometimes analytics bits get removed by other tests (e.g. deleting all cards, dashboards, users, etc.). When we run `ensure-audit-db-installed!`, though, the checksum hasn't changed (since the underlying analytics files didn't change), so we skip reloading the data. This sets `last-analytics-checksum` to `-1` (meaning: skip the checksum and just load the analytics data) when running `ensure-audit-db-installed!` in the tests that we've seen flake.
-
Jeff Bruemmer authored
-
Braden Shepherdson authored
Zoom-in drills are not available for such bins, and this is now tested. Also updates a few comments: - Pivot drills work for **one** aggregation and 0 breakouts, not for 0. - Legend clicks and pivot cell clicks look the same, so some tests cover both cases and this is now noted by comments.
-