Skip to content
Snippets Groups Projects
Commit 9c53876f authored by Alexandros Georgantas's avatar Alexandros Georgantas
Browse files

Minor correction

parent 66b3eba7
No related branches found
No related tags found
No related merge requests found
......@@ -113,8 +113,7 @@ svg {
}
.check {
fill: var(--color-primary);
display: block;
display: none;
}
.x {
......@@ -131,6 +130,7 @@ svg {
font-size: 50px;
font-style: normal;
stroke: none;
fill: var(--color-primary);
text-transform: uppercase;
}
}
......@@ -2,7 +2,7 @@ A file attached to a note.
```js
const statusFactory = () => {
const statuses = ['Accepted', 'Pending', 'Declined']
const statuses = ['Accepted', 'Pending', 'Declined', 'Submitted']
return statuses[Math.floor(Math.random() * statuses.length)]
};
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment