@saooti/octopus-sdk 36.0.30 → 36.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "36.0.30",
3
+ "version": "36.0.31",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -269,7 +269,7 @@ export default defineComponent({
269
269
  height: 2rem;
270
270
  }
271
271
  }
272
- &.cscrolled{
272
+ &.scrolled{
273
273
  .link-hover {
274
274
  display: none;
275
275
  }
@@ -9,6 +9,6 @@ export default {
9
9
  const hours = Math.floor(totalSeconds / 3600);
10
10
  const minutes = Math.floor((totalSeconds - hours * 3600) / 60);
11
11
  const seconds = totalSeconds - hours * 3600 - minutes * 60;
12
- return (hours > 0? this.formatToString(hours)+"'":"") + this.formatToString(minutes) +"'"+ this.formatToString(seconds)+"'";
12
+ return (hours > 0? this.formatToString(hours)+"'":"") + this.formatToString(minutes) +"'"+ this.formatToString(seconds)+"''";
13
13
  },
14
14
  };