This is an automated email from the ASF dual-hosted git repository.

shanedell pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/daffodil-vscode.git


The following commit(s) were added to refs/heads/main by this push:
     new 448d288  Multiple Updates:
448d288 is described below

commit 448d288b967628a1cad4c54193aaaeaa7737c3db
Author: Shane Dell <[email protected]>
AuthorDate: Wed Jul 13 16:03:33 2022 -0400

    Multiple Updates:
    
    - Fix comparision of string to see if it include omega-edit instead of 
being directly equal to
    - Fix spacing of Little Indian checkbox for omega-edit ui
---
 src/classes/artifact.ts       | 2 +-
 src/omega_edit/interface.html | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/classes/artifact.ts b/src/classes/artifact.ts
index c2fb36b..99a51a3 100644
--- a/src/classes/artifact.ts
+++ b/src/classes/artifact.ts
@@ -43,7 +43,7 @@ export class Artifact {
   }
 
   archiveUrl = (backend: Backend) => {
-    if (this.type === 'omega-edit') {
+    if (this.type.includes('omega-edit')) {
       return 
`https://github.com/${backend.owner}/${backend.repo}/releases/download/v${this.version}/${this.archive}`
     } else {
       return ''
diff --git a/src/omega_edit/interface.html b/src/omega_edit/interface.html
index 4f34132..37037d5 100644
--- a/src/omega_edit/interface.html
+++ b/src/omega_edit/interface.html
@@ -68,7 +68,7 @@
         <label style="margin-top: 10px" class="container"
           >Little Indian
           <input type="checkbox" />
-          <span class="checkmark"></span>
+          <span style="margin-left: 0px" class="checkmark"></span>
         </label>
         <div class="format-area">
           uint8<br />

Reply via email to