portune 0.1.7__tar.gz → 0.1.8__tar.gz

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.

Potentially problematic release.


This version of portune might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: portune
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: Simple Python HTTP Exec Server
5
5
  Author: Franck Jouvanceau
6
6
  Maintainer: Franck Jouvanceau
@@ -293,8 +293,9 @@ function initTableFilters(table) {
293
293
 
294
294
  function updateRowCount(table, count) {
295
295
  const rowCount = table.querySelector('.row-count');
296
+ const totalRows = table.querySelectorAll('tbody tr').length;
296
297
  if (rowCount) {
297
- rowCount.innerHTML = ` ${count}`; // 🡇🡇 not working macOS
298
+ rowCount.innerHTML = ` ${count}/${totalRows}`; // 🡇🡇 not working macOS
298
299
  }
299
300
  }
300
301
 
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.1.7'
21
- __version_tuple__ = version_tuple = (0, 1, 7)
20
+ __version__ = version = '0.1.8'
21
+ __version_tuple__ = version_tuple = (0, 1, 8)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: portune
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: Simple Python HTTP Exec Server
5
5
  Author: Franck Jouvanceau
6
6
  Maintainer: Franck Jouvanceau
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes