Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b35d126 commit abf1974Copy full SHA for abf1974
components/header.js
@@ -87,7 +87,7 @@ export default props => {
87
padding: 5px 20px;
88
width: 100%;
89
background: #fff;
90
- z-index: 1000
+ z-index: 1000;
91
}
92
.header__container {
93
max-width: 1280px;
components/row-events.js
@@ -5,7 +5,8 @@ import PropTypes from 'prop-types';
5
6
const extractImageUrl = input => {
7
const regex = /<img.*?src=['"](.*?)['"]/;
8
- return regex.exec(input)[1];
+ const matches = regex.exec(input);
9
+ return matches ? matches[1] : '';
10
};
11
12
const RowEvent = props => {
0 commit comments