Skip to content

Disabled the edit fields #350

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions views/pages/claims/edit.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
</div>
<div class="field">
<label>Issue URL</label>
<input name="issue_url" placeholder="URL of Issue, eg. http://github.com/org/proj/issue/7" type="url" value="{{claim.issueUrl}}" required>
<input name="issue_url" placeholder="URL of Issue, eg. http://github.com/org/proj/issue/7" type="url" value="{{claim.issueUrl}}" disabled required>
</div>
<div class="field">
<label>Pull Request URL</label>
<input name="pull_url" placeholder="URL of PR, eg. http://github.com/org/proj/pull/7" type="url" value="{{claim.pullUrl}}" required>
<input name="pull_url" placeholder="URL of PR, eg. http://github.com/org/proj/pull/7" type="url" value="{{claim.pullUrl}}" disabled required>
</div>
<div class="field">
<label>Bounty</label>
<input name="bounty" placeholder="Bounty Points you are claiming for this" type="number" value="{{claim.bounty}}" required>
<input name="bounty" placeholder="Bounty Points you are claiming for this" type="number" value="{{claim.bounty}}" disabled required>
</div>
<div style="margin-top: 25px">
<div style="display: inline !important;" class="ui container center aligned">
Expand Down