Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
jrtcppv committed Aug 14, 2024
1 parent 5135f9c commit 99024b5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions ui/src/js/util/tator-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,13 +369,12 @@ export class TatorData {
async getMediaListByIds(mediaIds) {
var response = await fetchCredentials(`/rest/Medias/${this._project}`, {
method: "PUT",
body: JSON.stringify({ids: mediaIds})
})
body: JSON.stringify({ ids: mediaIds }),
});
const data = await response.json();
return data;
}


/**
* Converts the given attribute name to a Tator search compliant string
* @param {*} attrName - Name of attribute to convert
Expand Down

0 comments on commit 99024b5

Please sign in to comment.