Skip to content

Commit

Permalink
fix(ui): change ticket url
Browse files Browse the repository at this point in the history
  • Loading branch information
RaneHyv committed Feb 7, 2024
1 parent 8a9b96f commit 8446ce8
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions frontend/src/components/theme/Navigation/Navigation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@
* @module components/theme/Navigation/Navigation
*/

import React, { Component } from 'react';
import { getNavigation } from '@plone/volto/actions';
import { BodyClass, getBaseUrl, hasApiExpander } from '@plone/volto/helpers';
import config from '@plone/volto/registry';
import cx from 'classnames';
import PropTypes from 'prop-types';
import { Component } from 'react';
import { defineMessages, injectIntl } from 'react-intl';
import { connect } from 'react-redux';
import { CSSTransition } from 'react-transition-group';
import { compose } from 'redux';
import { defineMessages, injectIntl } from 'react-intl';
import cx from 'classnames';
import { Container } from 'semantic-ui-react';
import { BodyClass, getBaseUrl, hasApiExpander } from '@plone/volto/helpers';
import config from '@plone/volto/registry';
import { getNavigation } from '@plone/volto/actions';
import { CSSTransition } from 'react-transition-group';
import NavItems from './NavItems';
import LanguageSelector from '../LanguageSelector/LanguageSelector';
import SearchWidget from '../SearchWidget/SearchWidget';
import NavItems from './NavItems';

const messages = defineMessages({
closeMobileMenu: {
Expand Down Expand Up @@ -140,7 +140,7 @@ class Navigation extends Component {
</div>
<div className="hamburger-wrapper">
<a
href="https://ticketshop.haagshistorischmuseum.nl"
href={`/${String(this.props.lang)}/tickets`}
target="_blank"
rel="noopener noreferrer"
className="tickets-button"
Expand Down

0 comments on commit 8446ce8

Please sign in to comment.