Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<!-- New Profile Photo Preview -->
<div class="mt-2" v-show="photoPreview">
<img :src="photoPreview" class="rounded-circle" width="80px" height="80px">
<img :src="photoPreview" class="rounded-circle" width="80" height="80">
</div>

<jet-secondary-button class="mt-2 me-2" type="button" @click.prevent="selectNewPhoto">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@

<!-- Current Profile Photo -->
<div class="mt-2" x-show="! photoPreview">
<img src="{{ $this->user->profile_photo_url }}" class="rounded-circle" height="80px" width="80px">
<img src="{{ $this->user->profile_photo_url }}" class="rounded-circle" height="80" width="80">
</div>

<!-- New Profile Photo Preview -->
<div class="mt-2" x-show="photoPreview">
<img x-bind:src="photoPreview" class="rounded-circle" width="80px" height="80px">
<img x-bind:src="photoPreview" class="rounded-circle" width="80" height="80">
</div>

<x-jet-secondary-button class="mt-2 me-2" type="button" x-on:click.prevent="$refs.photo.click()">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

<!-- New Profile Photo Preview -->
<div class="mt-2" v-show="photoPreview">
<img :src="photoPreview" class="rounded-circle" width="80px" height="80px">
<img :src="photoPreview" class="rounded-circle" width="80" height="80">
</div>

<jet-secondary-button class="mt-2 me-2" type="button" @click.prevent="selectNewPhoto">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@

<!-- Current Profile Photo -->
<div class="mt-2" x-show="! photoPreview">
<img src="{{ $this->user->profile_photo_url }}" class="rounded-circle" height="80px" width="80px">
<img src="{{ $this->user->profile_photo_url }}" class="rounded-circle" height="80" width="80">
</div>

<!-- New Profile Photo Preview -->
<div class="mt-2" x-show="photoPreview">
<img x-bind:src="photoPreview" class="rounded-circle" width="80px" height="80px">
<img x-bind:src="photoPreview" class="rounded-circle" width="80" height="80">
</div>

<x-jet-secondary-button class="mt-2 me-2" type="button" x-on:click.prevent="$refs.photo.click()">
Expand Down