We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90b34a0 commit ae988c8Copy full SHA for ae988c8
1 file changed
lib/linear/commands/issue/list.rb
@@ -38,7 +38,7 @@ def call(ids:, **options)
38
39
def issues_for(options)
40
logger.debug('Fetching issues', options:)
41
- return options[:ids].map { |id| Rubyists::Linear::Issue.find(id) } if options[:ids]
+ return options[:ids].map { |id| Rubyists::Linear::Issue.find(id.upcase) } if options[:ids]
42
return Rubyists::Linear::Issue.all(filter: { assignee: { null: true } }) if options[:unassigned]
43
return Rubyists::Linear::User.me.issues if options[:mine]
44
0 commit comments