Fix naming error
This commit is contained in:
parent
3715150c11
commit
86bbe8882d
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
FROM ruby:3.2.2-slim
|
||||
|
||||
RUN apt-get update -qq && apt-get install -y build-essential libsqlite3-dev openssl
|
||||
RUN apt-get update -qq && apt-get install -y build-essential libsqlite3-dev openssl libffi-dev libpq-dev
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
|
|
|
|||
2
app.rb
2
app.rb
|
|
@ -98,7 +98,7 @@ helpers do
|
|||
field, direction = order_by.split(':')
|
||||
name = case field
|
||||
when 'due_date' then 'Due Date'
|
||||
when 'name' then 'Title'
|
||||
when 'name' then 'Name'
|
||||
when 'priority' then 'Priority'
|
||||
when 'created_at' then 'Created At'
|
||||
else 'Select'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue