Skip to content
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
2 changes: 1 addition & 1 deletion frontend/src/metabase/components/ChannelSetupMessage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default class ChannelSetupMessage extends Component {
};

static defaultProps = {
channels: ["email", "Slack"],
channels: ["email"],
};

render() {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/metabase/components/ChannelSetupModal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class ChannelSetupModal extends Component {
};

static defaultProps = {
channels: ["email", "Slack"],
channels: ["email"],
};

render() {
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/metabase/components/CollectionLanding.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ const DashboardEmptyState = () => (
const PulseEmptyState = () => (
<EmptyStateWrapper>
<EmptyState
message={t`Pulses let you send out the latest data to your team on a schedule via email or slack.`}
message={t`Pulses let you send out the latest data to your team on a schedule via email. (Only accessible via the report builder premium option)`}
illustrationElement={<Icon name="pulse" size={32} />}
/>
</EmptyStateWrapper>
Expand Down
5 changes: 5 additions & 0 deletions frontend/src/metabase/components/ItemTypeFilterBar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ export const FILTERS = [
name: t`Questions`,
filter: "card",
icon: "beaker",
},
{
name: t`Pulses`,
filter: "pulse",
icon: "pulse",
}
];

Expand Down
6 changes: 3 additions & 3 deletions frontend/src/metabase/containers/Overworld.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -229,11 +229,11 @@ export class AdminPinMessage extends React.Component {

const SectionHeading = ({ children }) => (
<Box mb={1}>
<h5
style={{ color: colors["text-medium"], fontWeight: 900 }}
<h1
style={{ fontWeight: 900 }}
>
{children}
</h5>
</h1>
</Box>
);

Expand Down
Loading