Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
go
Commits
c668fa1c
Commit
c668fa1c
authored
Jan 09, 2019
by
David Haynes
🙆
Browse files
Add br's to the debug page
Closes
#188
parent
16becd96
Pipeline
#3593
passed with stage
in 1 minute and 16 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
go/go_ahead/src/Components/Molecules/DebugCreate.jsx
View file @
c668fa1c
...
...
@@ -37,12 +37,15 @@ const DebugCreate = () => (
{
"
Destination:
"
}
<
Field
name
=
"destination"
placeholder
=
"https://longwebsitelink.com"
/>
<
ErrorMessage
name
=
"destination"
component
=
"div"
/>
<
br
/>
{
"
Short:
"
}
<
Field
name
=
"short"
/>
<
ErrorMessage
name
=
"short"
/>
<
br
/>
{
"
Expires:
"
}
<
Field
type
=
"select"
name
=
"expires"
placeholder
=
"leave blank"
/>
<
ErrorMessage
name
=
"expires"
/>
<
br
/>
<
button
type
=
"submit"
disabled
=
{
isSubmitting
}
>
Submit
</
button
>
...
...
go/go_ahead/src/Components/Molecules/DebugDelete.jsx
View file @
c668fa1c
...
...
@@ -31,6 +31,7 @@ const DebugDelete = () => (
{
"
Short:
"
}
<
Field
name
=
"short"
/>
<
ErrorMessage
name
=
"short"
/>
<
br
/>
<
button
type
=
"submit"
disabled
=
{
isSubmitting
}
>
Submit
</
button
>
...
...
go/go_ahead/src/Components/Molecules/DebugUpdate.jsx
View file @
c668fa1c
...
...
@@ -54,18 +54,22 @@ const DebugUpdate = () => (
{
"
Old Short:
"
}
<
Field
name
=
"oldshort"
/>
<
ErrorMessage
name
=
"oldshort"
/>
<
br
/>
{
"
New Destination:
"
}
<
Field
name
=
"destination"
placeholder
=
"https://longwebsitelink.com"
/>
<
ErrorMessage
name
=
"destination"
component
=
"div"
/>
<
br
/>
{
"
New Short:
"
}
<
Field
name
=
"newshort"
/>
<
ErrorMessage
name
=
"newshort"
/>
<
br
/>
{
"
New Expires:
"
}
<
Field
type
=
"select"
name
=
"expires"
placeholder
=
"leave blank"
/>
<
ErrorMessage
name
=
"expires"
/>
<
br
/>
<
button
type
=
"submit"
disabled
=
{
isSubmitting
}
>
Submit
</
button
>
...
...
go/go_ahead/src/Components/Pages/AboutPage.jsx
View file @
c668fa1c
...
...
@@ -7,7 +7,6 @@ const AboutPage = () => {
document
.
title
=
"
About
"
;
return
(
<
PageTemplate
>
<
h1
>
About page
</
h1
>
<
Card
className
=
"shadow-lg p-3 mb-5 bg-white rounded"
>
<
CardBody
>
<
CardTitle
>
Terms of Use
</
CardTitle
>
...
...
go/go_ahead/src/Components/Pages/DebugCRUD.jsx
View file @
c668fa1c
...
...
@@ -17,8 +17,6 @@ class DebugCRUD extends React.Component {
return
(
<
PageTemplate
>
<
div
>
<
h1
>
Debug CRUD Page
</
h1
>
<
h3
>
Create
</
h3
>
<
DebugCreate
/>
...
...
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