- tooltips - revert chart title UI - reduce period chooser font-size - localize dates of data points - fix a bug where multiple reports were loaded at the same time - fix a bug where % was not showing anymore - remove spacing at the top - remove loadingTitle feature (Loading...%report name%) incompatible with new hijack design
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
export default Ember.Component.extend({
|
|
classNames: ["conditional-loading-section"],
|
|
|
|
classNameBindings: ["isLoading"],
|
|
|
|
isLoading: false,
|
|
|
|
title: I18n.t("conditional_loading_section.loading")
|
|
});
|