Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
See what's new at GitLab
4
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
O
OSMyBiz
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
35
Issues
35
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
2
Merge Requests
2
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
geometalab
OSMyBiz
Commits
6a837d9c
Commit
6a837d9c
authored
Aug 14, 2019
by
Seemann Benjamin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved converter js into store
parent
14d49f19
Pipeline
#76381788
failed with stages
in 1 minute and 32 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
26 deletions
+26
-26
frontend/osmybiz/build/webpack.base.conf.js
frontend/osmybiz/build/webpack.base.conf.js
+1
-1
frontend/osmybiz/src/components/detail/DetailForm.vue
frontend/osmybiz/src/components/detail/DetailForm.vue
+25
-25
frontend/osmybiz/src/store/converter.js
frontend/osmybiz/src/store/converter.js
+0
-0
No files found.
frontend/osmybiz/build/webpack.base.conf.js
View file @
6a837d9c
...
...
@@ -44,7 +44,7 @@ module.exports = {
{
test
:
/
\.
js$/
,
loader
:
'
babel-loader
'
,
include
:
[
resolve
(
'
src
'
),
resolve
(
'
test
'
)
,
resolve
(
'
static/converter.js
'
)
]
include
:
[
resolve
(
'
src
'
),
resolve
(
'
test
'
)]
},
{
test
:
/
\.(
png|jpe
?
g|gif|svg
)(\?
.*
)?
$/
,
...
...
frontend/osmybiz/src/components/detail/DetailForm.vue
View file @
6a837d9c
...
...
@@ -41,30 +41,30 @@
:placeholder=
"$t('detail.placeholders.opening_hours')"
>
</div>
<div
class=
"field"
>
<div
class=
"field-label"
>
<label>
{{
$t
(
'
detail.labels.opening_hours_url
'
)
}}
</label>
<img
class=
"info"
@
mouseenter=
"showPopup($t('infoTexts.opening_hours_url'))"
@
mouseleave=
"hidePopup()"
src=
"../../assets/info_black.png"
>
</div>
<input
v-validate=
"'url'"
:class=
"
{'is-error': errors.has('website_opening_hours')}"
type="text"
name="website_opening_hours"
v-on:blur="blurOpeningHours()"
id="openingHoursURL"
v-model="details.opening_url"
:placeholder="$t('detail.placeholders.opening_hours_url')">
<span
v-show=
"errors.has('website_opening_hours')"
class=
"help is-danger"
>
<div
class=
"field"
>
<div
class=
"field-label"
>
<label>
{{
$t
(
'
detail.labels.opening_hours_url
'
)
}}
</label>
<img
class=
"info"
@
mouseenter=
"showPopup($t('infoTexts.opening_hours_url'))"
@
mouseleave=
"hidePopup()"
src=
"../../assets/info_black.png"
>
</div>
<input
v-validate=
"'url'"
:class=
"
{'is-error': errors.has('website_opening_hours')}"
type="text"
name="website_opening_hours"
v-on:blur="blurOpeningHours()"
id="openingHoursURL"
v-model="details.opening_url"
:placeholder="$t('detail.placeholders.opening_hours_url')">
<span
v-show=
"errors.has('website_opening_hours')"
class=
"help is-danger"
>
{{
$t
(
'
detail.validate.website
'
)
}}
</span>
</div>
</div>
<div
class=
"field"
>
<div
class=
"field-label"
>
<label>
{{
$t
(
'
detail.labels.phone
'
)
}}
</label>
...
...
@@ -178,13 +178,13 @@
</
template
>
<
script
>
import
{
mapGetters
,
mapMutations
}
from
'
vuex
'
;
import
{
mapGetters
,
mapMutations
}
from
'
vuex
'
;
import
Vue
from
'
vue
'
;
import
VeeValidate
from
'
vee-validate
'
;
import
isURL
from
'
../../
../static
/converter
'
;
import
isURL
from
'
../../
store
/converter
'
;
Vue
.
use
(
VeeValidate
);
...
...
@@ -266,7 +266,7 @@
width
:
49%
;
display
:
flex
;
flex-direction
:
column
;
align-items
:stretch
;
align-items
:
stretch
;
justify-content
:
space-around
;
}
...
...
frontend/osmybiz/s
tatic
/converter.js
→
frontend/osmybiz/s
rc/store
/converter.js
View file @
6a837d9c
File moved
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment