Skip to content

Commit 1c2474c

Browse files
authored
Merge branch 'master' into text-position#4369
2 parents 8a2372c + e40877c commit 1c2474c

File tree

5 files changed

+19
-63
lines changed

5 files changed

+19
-63
lines changed

.database_consistency.yml

Lines changed: 13 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ DatabaseConsistencyCheckers:
2222
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
2323
ThreeStateBooleanChecker:
2424
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
25-
ForeignKeyChecker:
26-
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
2725
MissingAssociationClassChecker:
2826
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
2927
ForeignKeyTypeChecker:
@@ -35,54 +33,18 @@ DatabaseConsistencyCheckers:
3533
RedundantIndexChecker:
3634
enabled: false # Disabling this flag as currently there are issues reported on the project regarding this key.
3735

38-
User:
39-
enabled: true # Enables/disables checks for the whole model. This can be overwritten by deeper configuration (latest configuration has highest priority).
40-
phone:
41-
enabled: true # Enables/disables checks for the field. This can be overwritten by deeper configuration (latest configuration has highest priority).
42-
ColumnPresenceChecker:
43-
enabled: true # Enables/disables specific checker for the field. This has the highest priority (except globally disabled checkers).
44-
name:
45-
enabled: true
46-
code:
47-
enabled: true
48-
NullConstraintChecker:
49-
enabled: true
50-
name+email:
51-
MissingUniqueIndexChecker:
52-
enabled: true
53-
54-
Country:
55-
users:
56-
MissingIndexChecker:
57-
enabled: true
58-
59-
# Can be compact (example), "enabled: true" is default
60-
# User:
61-
# phone:
62-
# ColumnPresenceChecker:
63-
# enabled: false
64-
# name:
65-
# enabled: false
66-
# Company:
67-
# enabled: false
68-
69-
70-
# Concerns can be emulated using YAML's anchors and aliases
71-
72-
# 1. Define an anchor before declaring concern-related settings
73-
DateConcern: &ignore_date_concern
74-
date:
75-
NullConstraintChecker:
36+
Ahoy::Event:
37+
visit:
38+
ForeignKeyChecker:
7639
enabled: false
77-
NameConcern: &ignore_name_concern
78-
name:
79-
ColumnPresenceChecker:
40+
user:
41+
ForeignKeyChecker:
42+
enabled: false
43+
Ahoy::Visit:
44+
user:
45+
ForeignKeyChecker:
46+
enabled: false
47+
PushSubscription:
48+
user:
49+
ForeignKeyChecker:
8050
enabled: false
81-
82-
# Models using concerns
83-
# 2. Now include the relevant settings using aliases
84-
Event:
85-
<<: *ignore_date_concern
86-
<<: *ignore_name_concern
87-
Poll:
88-
<<: *ignore_date_concern

.github/workflows/docs.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,11 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v2
13+
uses: actions/checkout@v3
1414
- name: jsdocs-dep
1515
run: npm install
16-
- name: jsdocs-action
17-
uses: andstor/[email protected]
18-
with:
19-
source_dir: ./simulator/src
20-
recurse: true
21-
output_dir: ./out
22-
config_file: ./conf.json
23-
template: better-docs
16+
- name: jsdocs-generate
17+
run: node ./node_modules/jsdoc/jsdoc.js ./simulator/src -r -c ./conf.json -t ./node_modules/better-docs -d ./out
2418
- name: Deploy
2519
uses: peaceiris/actions-gh-pages@v3
2620
with:

app/assets/stylesheets/users.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@
323323

324324
input {
325325
border: 0;
326-
border-left: 1px solid $form-border-grey;
326+
border: 1px solid $primary-green;
327327
border-radius: 0;
328328
font-size: 16px;
329329
margin: 0;

app/views/projects/_add_collaborator_modal.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<div class="field">
2222
<%= form.hidden_field :project_id, id: :collaboration_project_id %>
2323
</div>
24-
<div class="form-group">
24+
<div class="form-group d-flex flex-column">
2525
<%= form.label :emails %>
2626
<%= form.select :emails, [], {}, { class: "form-select", multiple: true } %>
2727
</div>

app/views/users/circuitverse/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
<button id="collaborator-circuits" class="btn users-circuits-tab users-collaborators-tab"><%= t("users.circuitverse.index.collaborated_circuits") %></button>
7171
</div>
7272
<div class="users-circuits-search-container">
73-
<span><i class="fas fa-search search-icon-dashboard"></i><input type="search" class="users-circuits-search" placeholder="<%= t("users.circuitverse.index.search_circuits") %>"></span>
73+
<span><i class="fas fa-search search-icon-dashboard"></i><input type="search" class="users-circuits-search form-control form-input " placeholder="<%= t("users.circuitverse.index.search_circuits") %>"></span>
7474
</div>
7575
</div>
7676
</div>

0 commit comments

Comments
 (0)