Skip to content

Commit

Permalink
Deploying the new version to live with new calendar picker and Superset
Browse files Browse the repository at this point in the history
version 3.0.2
Also, added a global style to hide the calendar container.
  • Loading branch information
saghatelian committed Dec 9, 2023
1 parent 8651b24 commit 4491aef
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docker-compose-10web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
x-superset-image: &superset-image dc.10web.io:5050/reporting/superset:3.0.1.0
x-superset-image: &superset-image dc.10web.io:5050/reporting/superset:3.0.2.1
x-superset-depends-on: &superset-depends-on
- db
- redis
Expand Down
1 change: 1 addition & 0 deletions superset-frontend/.eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,4 @@ lib/
tmp/
storybook-static/
plugins/funnel-chart-plugin/*
plugins/calendar-picker/*
6 changes: 3 additions & 3 deletions superset-frontend/package-lock.json

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

3 changes: 3 additions & 0 deletions superset-frontend/src/GlobalStyles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ export const GlobalStyles = () => (
margin-right: 0;
}
}
div[data-test-viz-type='calendar-picker'] {
display: none;
}
`}
/>
);
2 changes: 1 addition & 1 deletion superset-frontend/src/visualizations/presets/MainPreset.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export default class MainPreset extends Preset {
new HandlebarsChartPlugin().configure({ key: 'handlebars' }),
new CalendarRangePlugin().configure({ key: 'calendar_range' }),
new SupersetxFunnelChartPlugin().configure({ key: 'funnel_chart' }),
new CalendarPicker().configure({ key: 'calendar-picker' }),
new CalendarPicker().configure({ key: 'calendar-picker' }),
...experimentalplugins,
],
});
Expand Down

0 comments on commit 4491aef

Please sign in to comment.