@burh/nuxt-core 1.0.163 → 1.0.164

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.
@@ -18,7 +18,10 @@
18
18
  <div
19
19
  v-show="userData.user_applied_job.length > 0"
20
20
  class="mt-3"
21
- v-for="(applied, index) in userData.user_applied_job"
21
+ v-for="(applied, index) in userData.user_applied_job.slice(
22
+ 0,
23
+ 5
24
+ )"
22
25
  :key="index"
23
26
  >
24
27
  <p class="history-text mb-0">
@@ -45,7 +48,7 @@
45
48
  <div class="line mb-3"></div>
46
49
  <div
47
50
  v-show="notes.length > 0"
48
- v-for="(note, index) in notes"
51
+ v-for="(note, index) in notes.slice(0, 5)"
49
52
  :key="index"
50
53
  >
51
54
  <div class="notes-baloon">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burh/nuxt-core",
3
- "version": "1.0.163",
3
+ "version": "1.0.164",
4
4
  "description": "Design System and Components.",
5
5
  "author": "Burh",
6
6
  "scripts": {