Skip to content

Commit

Permalink
Merge pull request #587 from CDLUC3/leading-space-fix
Browse files Browse the repository at this point in the history
removed deprecated version line from docker-compose
  • Loading branch information
briri authored May 13, 2024
2 parents 6726ea1 + 2e1dfde commit e39957c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -847,6 +847,7 @@
t.index ["user_id"], name: "index_users_perms_on_user_id"
end

add_foreign_key "active_storage_attachments", "active_storage_blobs", column: "blob_id"
add_foreign_key "active_storage_variant_records", "active_storage_blobs", column: "blob_id"
add_foreign_key "answers", "plans"
add_foreign_key "answers", "questions"
Expand Down
2 changes: 0 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
version: '3.4'

# NOTE::
#
# The services, settings and environment setup in this compose file is
Expand Down
2 changes: 1 addition & 1 deletion react-client/src/models.js
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ export class DataRepository extends Model {
set title(val) { this.setData("host.title", val); }

get url() { return this.getData("host.url", ""); }
set url(val) { this.setData("host.url", val); }
set url(val) { this.setData("host.url", val.trim()); }

get description() { return this.getData("host.description", ""); }
set description(val) { this.setData("host.description", val); }
Expand Down

0 comments on commit e39957c

Please sign in to comment.