code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/types.d.ts b/types.d.ts @@ -2476,7 +2476,7 @@ declare module "two.js/src/path" {
* @returns {Object}
* @description Given a float `t` from 0 to 1, return a point or assign a passed `obj`'s coordinates to that percentage on this {@link Two.Path}'s curve.
*/
- getPointAt(t: number, obj: any): any;
+ getPoint... | 7 |
diff --git a/lib/node_modules/@stdlib/_tools/eslint/rules/no-internal-require/lib/main.js b/lib/node_modules/@stdlib/_tools/eslint/rules/no-internal-require/lib/main.js var startsWith = require( '@stdlib/string/starts-with' );
var contains = require( '@stdlib/assert/contains' );
+var isString = require( '@stdlib/assert... | 9 |
diff --git a/src/components/item-table/index.js b/src/components/item-table/index.js @@ -10,6 +10,7 @@ import ArrowIcon from '../../components/data-table/Arrow.js';
import DataTable from '../data-table';
import ValueCell from '../value-cell';
+import TraderPriceCell from '../trader-price-cell';
// import { selectAllIte... | 11 |
diff --git a/source/Overture/io/XHR.js b/source/Overture/io/XHR.js @@ -190,6 +190,10 @@ const XHR = Class({
const io = this.io;
const that = this;
+ if ( io ) {
+ io.fire( 'io:begin' );
+ }
+
xhr.open( method, url, this.makeAsyncRequests );
xhr.withCredentials = !!withCredentials;
responseType = responseType || '';
@@ ... | 9 |
diff --git a/packages/medusa/src/services/order.js b/packages/medusa/src/services/order.js @@ -248,7 +248,8 @@ class OrderService extends BaseService {
query.relations = relations
}
- const [raw, count] = await orderRepo.findAndCount(query)
+ const raw = await orderRepo.findWithRelations(query.relations, query)
+ const... | 14 |
diff --git a/test-complete/nodejs-optic-from-triples.js b/test-complete/nodejs-optic-from-triples.js @@ -515,4 +515,25 @@ describe('Node.js Optic from triples test', function(){
}, done);
});
+ it('TEST 13 - dedup off', function(done){
+ const bb = op.prefixer('http://marklogic.com/baseball/players/');
+ const ageCol =... | 0 |
diff --git a/src/article/InternalArticleSchema.js b/src/article/InternalArticleSchema.js @@ -512,6 +512,7 @@ ContainerTranslation.schema = {
class TextTranslation extends XMLTextElement {}
TextTranslation.schema = {
type: 'text-translation',
+ content: TEXT(...RICH_TEXT_ANNOS),
language: STRING
}
| 11 |
diff --git a/articles/connections/calling-an-external-idp-api.md b/articles/connections/calling-an-external-idp-api.md @@ -177,6 +177,10 @@ Then, you can call your proxy API from your public client using the respective f
- [Implicit Grant](/api-auth/tutorials/implicit-grant) if you are working with a SPA
- [Authorizati... | 0 |
diff --git a/src/app/api/api.version.js b/src/app/api/api.version.js @@ -3,6 +3,9 @@ import registryUrl from 'registry-url';
import registryAuthToken from 'registry-auth-token';
import request from 'superagent';
import pkg from '../../package.json';
+import {
+ ERR_INTERNAL_SERVER_ERROR
+} from '../constants';
export c... | 1 |
diff --git a/README.md b/README.md @@ -150,7 +150,7 @@ Play [`<hello-kitty>` Demo](https://jsfiddle.net/sfd1p2m5)
<button onclick=meow>Hello new kitty!</button>
</figcaption>
- <img alt='Random kitty cat' src={kitty} onclick=pet >
+ <img alt='Random kitty cat' src={url} onclick=pet >
</figure>
</hello-world>
| 3 |
diff --git a/src/module/actor/sheet/vehicle.js b/src/module/actor/sheet/vehicle.js @@ -207,7 +207,7 @@ export class ActorSheetSFRPGVehicle extends ActorSheetSFRPG {
if (rawItemData.type === "weapon" || rawItemData.type === "vehicleAttack") {
return this.processDroppedData(event, data);
}
- else if (rawItemData.type ===... | 0 |
diff --git a/README.md b/README.md @@ -367,6 +367,12 @@ Use ESLint when writing and editing TestCafe tests.
* [ESLint plugin](https://github.com/miherlosev/eslint-plugin-testcafe)
+### Accessibility
+
+Find accessibility issues in your web app.
+
+* [axe-testcafe](https://github.com/helen-dikareva/axe-testcafe)
+
## Th... | 0 |
diff --git a/token-metadata/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/metadata.json b/token-metadata/0xDF2C7238198Ad8B389666574f2d8bc411A4b7428/metadata.json "symbol": "MFT",
"address": "0xDF2C7238198Ad8B389666574f2d8bc411A4b7428",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/util.js b/util.js @@ -624,3 +624,17 @@ export function getVelocityDampingFactor(dampingPer60Hz, timeDiff) {
export function getPlayerPrefix(playerId) {
return playersMapName + '.' + playerId;
}
+
+export function fitCameraToBox(camera, boundingBox, fitOffset = 1) {
+ const center = boundingBox.getCenter(lo... | 0 |
diff --git a/README.md b/README.md @@ -145,6 +145,10 @@ By default you can send your requests to `http://localhost:3000/`. Please note t
- [schedule](#schedule-Cloudwatch) (Cloudwatch)
- [websocket](#websocket-api-gateway-websocket) (API Gateway WebSocket)
+:white_check_mark: supported <br/>
+:x: unsupported <br/>
+:in... | 0 |
diff --git a/assets/js/modules/analytics/setup.js b/assets/js/modules/analytics/setup.js @@ -696,6 +696,7 @@ class AnalyticsSetup extends Component {
__( 'IP addresses will be anonymized.', 'google-site-kit' ) :
__( 'IP addresses will not be anonymized.', 'google-site-kit' )
}
+ { ' ' }
<Link
href="https://support.goog... | 1 |
diff --git a/src/app/Sidebar/UserInfo.js b/src/app/Sidebar/UserInfo.js @@ -59,7 +59,7 @@ const UserInfo = ({ intl, authenticated, authenticatedUser, user, ...props }) =>
</div>
</div>
</div>}
- {(user && authenticated && !isSameUser) && <Action
+ {(user && !isSameUser) && <Action
style={{ margin: '5px 0' }}
text={intl.... | 2 |
diff --git a/token-metadata/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E/metadata.json b/token-metadata/0xCeD4E93198734dDaFf8492d525Bd258D49eb388E/metadata.json "symbol": "EDO",
"address": "0xCeD4E93198734dDaFf8492d525Bd258D49eb388E",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/editor/config/config.js b/src/editor/config/config.js @@ -128,7 +128,7 @@ export default {
// Avoid default properties from storable JSON data, like `components` and `styles`.
// With this option enabled your data will be smaller (usefull if need to
// save some storage space)
- avoidDefaults: 0,
+ avo... | 12 |
diff --git a/js/readerview.js b/js/readerview.js var webviews = require('webviews.js')
var browserUI = require('browserUI.js')
+var searchbar = require('searchbar/searchbar.js')
var searchbarUtils = require('searchbar/searchbarUtils.js')
var urlParser = require('util/urlParser.js')
@@ -101,7 +102,7 @@ var readerView = ... | 1 |
diff --git a/lib/ferryman/lib/ferryman.js b/lib/ferryman/lib/ferryman.js @@ -531,10 +531,10 @@ class Ferryman {
if (!tokenData) {return false;}
- if(this.nodeSettings.applyTransform &&
- this.nodeSettings.applyTransform === 'before') {
+ if (this.nodeSettings && this.nodeSettings.applyTransform
+ && this.nodeSettings.a... | 9 |
diff --git a/assets/js/app/plugins/add-plugins.html b/assets/js/app/plugins/add-plugins.html <div class="panel-body text-center">
<div class="center-block">
<h5 class="capitalize margin-bottom">{{key.split('-').join(" ")}}</h5>
- <img ng-src="images/kong/plugins/{{key}}.png" class="img-responsive" style="margin: auto;h... | 9 |
diff --git a/src/javaHelper.js b/src/javaHelper.js 'use strict';
-/* eslint-disable no-extend-native */
+/* eslint no-extend-native:0 func-names:0 */
/* ---------------------------------------------------------------
String functions
For velocity templates to access java functions, to mimick AWS
-----------------------... | 14 |
diff --git a/source/views/menu/MenuOptionView.js b/source/views/menu/MenuOptionView.js @@ -23,7 +23,8 @@ const MenuOptionView = Class({
className: function () {
return (
'v-MenuOption' +
- (this.get('content').get('button').get('isLastOfSection')
+ (this.get('content').get('button').get('isLastOfSection') &&
+ this.get... | 8 |
diff --git a/articles/tutorials/generic-oauth2-connection-examples.md b/articles/tutorials/generic-oauth2-connection-examples.md @@ -3,6 +3,10 @@ description: This document covers generic OAuth 1.0/2.0 examples.
toc: true
---
+::: panel-info
+The preferred method for creating custom Social Connections is to use Auth0's... | 0 |
diff --git a/packages/insomnia-inso/src/scripts/artifacts.ts b/packages/insomnia-inso/src/scripts/artifacts.ts @@ -11,7 +11,7 @@ const isMac = () => platform === 'darwin';
const isLinux = () => platform === 'linux';
const isWindows = () => platform === 'win32';
-const getName = () => {
+const getArchiveName = () => {
c... | 4 |
diff --git a/README.md b/README.md @@ -17,15 +17,12 @@ Support this project by becoming a sponsor! [Become a sponsor](https://opencolle
**Gold sponsors**
[![Okta][okta-image]][okta-url]
-[Okta][okta-url]
[![Octo Consulting Group][octoconsulting-image]][octoconsulting-url]
-[Octo Consulting Group][octoconsulting-url]
**... | 2 |
diff --git a/apps/poikkipuinen/app.js b/apps/poikkipuinen/app.js @@ -79,7 +79,7 @@ function draw() {
var lines = 13;
var lineh = faceh * 2 / (lines - 2);
for (var i = 1; i < lines; i++) {
- var w = 2;
+ var w = 3;
var y = faceh - lineh * (i - 1);
if (i % 3 == 0) {
@@ -93,7 +93,8 @@ function draw() {
// get hour y posit... | 3 |
diff --git a/src/encoded/schemas/analysis_step_run.json b/src/encoded/schemas/analysis_step_run.json {
+ "title": "Analysis step run",
"description": "Schema for reporting the specific calculation of an analysis_step",
"id": "/profiles/analysis_step_run.json",
"$schema": "http://json-schema.org/draft-04/schema#",
| 0 |
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -84,10 +84,10 @@ We use the following [labels](https://github.com/plotly/plotly.js/labels) to tra
[`package-lock.json`](https://docs.npmjs.com/files/package-lock.json) file is
used and updated correctly.
-#### Step 1: Clone the plotly.js repo and install its dependencie... | 7 |
diff --git a/util/filter.js b/util/filter.js @@ -38,7 +38,7 @@ function filter(matches, filters) {
included_account_id(m, key, arr) {
return arr.every((k) => {
let passed = false;
- Object.keys(m.heroes).forEach((key) => {
+ Object.keys(m.heroes || {}).forEach((key) => {
if (m.heroes[key].account_id === k) {
passed = t... | 9 |
diff --git a/docs/index.html b/docs/index.html function colorizeEverything() {
colorize.map((id) => {
- monaco.editor.colorizeElement(document.getElementById('code' + id))
+ monaco.editor.colorizeElement(document.getElementById('code' + id), { theme: 'mermaid' })
})
colorize = colorize.filter(colorizeEl => colorizeEl)
... | 4 |
diff --git a/.github/workflows/release-rc.yml b/.github/workflows/release-rc.yml @@ -76,6 +76,7 @@ jobs:
uses: seebees/aws-codebuild-run-build@support-batch # https://github.com/aws-actions/aws-codebuild-run-build/pull/59
with:
project-name: growi-official-image-builder
+ batch: true
env-vars-for-codebuild: |
TAGS
env:... | 12 |
diff --git a/tests/phpunit/integration/Modules/Analytics_4Test.php b/tests/phpunit/integration/Modules/Analytics_4Test.php @@ -208,8 +208,8 @@ class Analytics_4Test extends TestCase {
$property_id = '1001';
$webdatastream_id = '2001';
$measurement_id = '1A2BCD345E';
- $account_id = '123';
- $container_id = '456';
+ $go... | 7 |
diff --git a/src/components/general/character/Character.jsx b/src/components/general/character/Character.jsx @@ -3,6 +3,7 @@ import React, { useEffect, useState, useRef, useContext } from 'react';
import classnames from 'classnames';
import { defaultPlayerName } from '../../../../ai/lore/lore-model.js';
+import * as so... | 0 |
diff --git a/src/background/utils/requests.js b/src/background/utils/requests.js @@ -3,7 +3,7 @@ import { forEachEntry, objectPick } from '#/common/object';
import ua from '#/common/ua';
import cache from './cache';
import { isUserScript, parseMeta } from './script';
-import { extensionRoot, postInitialize } from './in... | 1 |
diff --git a/contribs/gmf/apps/oeedit/less/main.less b/contribs/gmf/apps/oeedit/less/main.less width: 36rem;
max-width: 36rem;
}
+
+.gmf-displayquerywindow .gmf-displayquerywindow-details {
+ overflow-x: auto;
+}
+
+::-webkit-scrollbar {
+ height: @half-app-margin;
+}
| 11 |
diff --git a/fastlane/Fastfile b/fastlane/Fastfile @@ -81,7 +81,8 @@ platform :ios do
upload_symbols_to_crashlytics(
dsym_path: lane_context[SharedValues::DSYM_OUTPUT_PATH],
- gsp_path: "./ios/GoogleService-Info.plist"
+ gsp_path: "./ios/GoogleService-Info.plist",
+ binary_path: "./ios/Pods/FirebaseCrashlytics/upload-s... | 12 |
diff --git a/includes/Modules/Analytics.php b/includes/Modules/Analytics.php @@ -543,6 +543,23 @@ final class Analytics extends Module
);
if ( ! empty( $dimensions ) ) {
+ $invalid_dimensions_error_message = $this->validate_report_dimensions(
+ array_map(
+ function ( $dimension_def ) {
+ return $dimension_def->getName... | 4 |
diff --git a/src/app/controllers/Marlin/MarlinController.js b/src/app/controllers/Marlin/MarlinController.js @@ -83,15 +83,15 @@ class MarlinController {
feedOverride = 100;
spindleOverride = 100;
- writeHistory = {
+ history = {
// The write source is one of the following:
// * WRITE_SOURCE_CLIENT
// * WRITE_SOURCE_FE... | 10 |
diff --git a/src/commands/Core/Ping.js b/src/commands/Core/Ping.js @@ -53,7 +53,7 @@ class Ping extends Command {
* or perform an action based on parameters.
*/
run(message) {
- const hosts = ['content.warframe.com', 'forums.warframe.com', 'wf.christx.tw', 'store.warframe.com'];
+ const hosts = ['content.warframe.com',... | 2 |
diff --git a/polyfills/String/prototype/normalize/config.json b/polyfills/String/prototype/normalize/config.json },
"install": {
"module": "unorm",
- "paths": ["lib/unorm.js"]
+ "paths": ["lib/unorm.js"],
+ "postinstall": "update.task.js"
},
"dependencies": [
"Array.prototype.reduceRight"
| 0 |
diff --git a/docs/common/changelog.md b/docs/common/changelog.md @@ -9,6 +9,10 @@ this will be evened out from v24
- Upgrade rnkiwimobile to version `0.0.45`
+### v34
+
+- Added library to handle decimal prices
+
### v31
- Upgraded react-native and other native dependencies
| 0 |
diff --git a/test/jasmine/tests/range_slider_test.js b/test/jasmine/tests/range_slider_test.js @@ -461,8 +461,7 @@ describe('the range slider', function() {
bgcolor: '#fff',
borderwidth: 0,
bordercolor: '#444',
- _input: layoutIn.xaxis.rangeslider,
- fixedyrange: true
+ _input: layoutIn.xaxis.rangeslider
};
_supply(lay... | 1 |
diff --git a/scripts/bundle.config.js b/scripts/bundle.config.js @@ -62,7 +62,9 @@ const config = {
loader: 'babel-loader',
include: [/src/, /bundle/, /esm/],
options: {
- presets: [['@babel/preset-env', {forceAllTransforms: true}]],
+ presets: [['@babel/preset-env', {
+ targets: ["supports webgl", "not dead"]
+ }]],
/... | 3 |
diff --git a/README.md b/README.md @@ -63,11 +63,11 @@ Chocolatey (Windows):
[`choco install streamlink-twitch-gui`][Package-Chocolatey]
AUR (Arch Linux):
-[`yaourt -S streamlink-twitch-gui`][Package-AUR]
-[`yaourt -S streamlink-twitch-gui-git`][Package-AUR-git]
+[`pacaur -S streamlink-twitch-gui`][Package-AUR]
+[`paca... | 7 |
diff --git a/src/components/views/DamageControl/index.js b/src/components/views/DamageControl/index.js @@ -341,7 +341,16 @@ class DamageControl extends Component {
</Col>
<Col sm={6}>
<h3 className="text-center">
- {system && system.damage.damageReportText
+ {(() => {
+ system &&
+ console.log(
+ system.damage,
+ syste... | 1 |
diff --git a/package.json b/package.json "babel-loader": "^8.0.6",
"babel-plugin-transform-object-assign": "*",
"babel-preset-es2015": "^6.9.0",
- "bootstrap-loader": "^3.0.4",
"bootstrap-sass": "^3.3.6",
"clean-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^3.0.1",
"mini-css-extract-plugin": "^0.8.0",
"node-sass"... | 2 |
diff --git a/src/MeshBVH.js b/src/MeshBVH.js @@ -79,9 +79,10 @@ export default class MeshBVH {
rangeBoundaries.add( group.start + group.count );
}
+
// note that if you don't pass in a comparator, it sorts them lexicographically as strings :-(
const sortedBoundaries = Array.from( rangeBoundaries.values() ).sort( ( a, b... | 1 |
diff --git a/avatar-screenshotter.js b/avatar-screenshotter.js @@ -20,6 +20,8 @@ export const screenshotAvatarUrl = async ({
start_url,
width = 300,
height = 300,
+ canvas = null,
+ emotion = '',
}) => {
const app = await metaversefile.createAppAsync({
start_url,
@@ -28,12 +30,16 @@ export const screenshotAvatarUrl = a... | 0 |
diff --git a/source/Overture/application/GlobalKeyboardShortcuts.js b/source/Overture/application/GlobalKeyboardShortcuts.js @@ -43,6 +43,10 @@ var allowedInputs = {
submit: 1
};
+var DEFAULT_IN_INPUT = 0;
+var ACTIVE_IN_INPUT = 1;
+var DISABLE_IN_INPUT = 2;
+
var handleOnDown = {};
/**
@@ -109,24 +113,32 @@ var Global... | 0 |
diff --git a/truffle.js b/truffle.js @@ -2,7 +2,7 @@ module.exports = {
networks: {
development: {
host: "localhost",
- port: 9545,
+ port: 8545,
gas: 4700000,
gasPrice: 40000000000,
network_id: "*" // Match any network id
| 12 |
diff --git a/app/styles/components/_page-header.scss b/app/styles/components/_page-header.scss @@ -12,9 +12,6 @@ $nav-spacing: 4px;
NAV {
font-size: .9em;
width: 100%;
- // border-collapse: collapse;
- // border-spacing: 0px;
- // display: table;
box-sizing: border-box;
display: -ms-flexbox;
display: -webkit-box;
@@ -3... | 1 |
diff --git a/lib/assets/javascripts/dashboard/data/api-key-model.js b/lib/assets/javascripts/dashboard/data/api-key-model.js @@ -36,7 +36,7 @@ module.exports = Backbone.Model.extend({
},
parse: function (data) {
- const { grants, name, ...attrs } = data;
+ const { grants, ...attrs } = data;
const apis = this._parseApiG... | 2 |
diff --git a/src/common/mining-pools/miner/Miner-Pool-Management.js b/src/common/mining-pools/miner/Miner-Pool-Management.js @@ -56,11 +56,11 @@ class MinerProtocol {
}
if (poolURL !== undefined)
- await this.minerPoolSettings.setPoolURL(poolURL);
+ await this.minerPoolSettings.setPoolURL(poolURL, skipSaving);
if (this... | 13 |
diff --git a/src/components/Pagination/Pagination.js b/src/components/Pagination/Pagination.js @@ -310,6 +310,7 @@ export default class Pagination extends Component {
className={backButtonClasses}
onClick={this.decrementPage}
disabled={this.props.disabled || statePage === 1}
+ type="button"
>
<Icon
className="wfp--pagi... | 1 |
diff --git a/docs/en/platform/turtlebot3/contact_us.md b/docs/en/platform/turtlebot3/contact_us.md @@ -59,11 +59,11 @@ There are many answers to this question, but we strive to develop and apply prod
**ROBOTIS Korea Office**
-* Address: #1505, Gasan Digital-1ro 145 (Ace High End Tower 3), Geumchungu, Seoul, South Korea... | 14 |
diff --git a/articles/connections/database/password-change.md b/articles/connections/database/password-change.md @@ -67,7 +67,7 @@ Users will not receive notification that their password has been manually change
```har
{
"method": "PATCH",
- "url": "https://${account.namespace}/api/v2/users/{id}",
+ "url": "https://${a... | 2 |
diff --git a/userscript.user.js b/userscript.user.js @@ -20357,6 +20357,13 @@ var $$IMU_EXPORT$$;
options.do_request && options.cb) {
newsrc = (function() {
var query_ig = function(url, cb) {
+ // Normalize the URL to reduce duplicate cache checks
+ url = url
+ .replace(/[?#].*/, "")
+ .replace(/([^/])$/, "$1/")
+ .rep... | 7 |
diff --git a/packages/nova-embedly/lib/server/get_embedly_data.js b/packages/nova-embedly/lib/server/get_embedly_data.js @@ -27,7 +27,7 @@ function getEmbedlyData(url) {
});
if (!!result.data.images && !!result.data.images.length) // there may not always be an image
- result.data.thumbnailUrl = result.data.images[0].ur... | 13 |
diff --git a/modules/keyboard.js b/modules/keyboard.js @@ -255,9 +255,12 @@ Keyboard.DEFAULTS = {
default:
value = 'ordered';
}
- this.quill.scroll.deleteAt(range.index - length, length);
+ this.quill.insertText(range.index, ' ', Quill.sources.SILENT);
+ this.quill.history.cutoff();
+ this.quill.scroll.deleteAt(range.i... | 11 |
diff --git a/definitions/npm/react-router_v4.x.x/flow_v0.38.x-/react-router_v4.x.x.js b/definitions/npm/react-router_v4.x.x/flow_v0.38.x-/react-router_v4.x.x.js @@ -115,7 +115,7 @@ declare module 'react-router' {
declare type FunctionComponent<P> = (props: P) => ?React$Element<any>;
declare type ClassComponent<D, P, S>... | 11 |
diff --git a/packages/node_modules/@node-red/nodes/core/core/lib/debug/debug-utils.js b/packages/node_modules/@node-red/nodes/core/core/lib/debug/debug-utils.js @@ -449,7 +449,7 @@ RED.debug = (function() {
var metaRow = $('<div class="debug-message-meta"></div>').appendTo(msg);
$('<span class="debug-message-date">'+ g... | 9 |
diff --git a/test/acceptance/dataviews/overviews-test.js b/test/acceptance/dataviews/overviews-test.js @@ -678,7 +678,7 @@ describe('dataviews using tables with overviews', function() {
function createMapConfig(options) {
return {
- version: '1.5.0',
+ version: '1.8.0',
analyses: [
{ id: 'data-source',
type: 'source',
... | 4 |
diff --git a/generators/server/templates/pom.xml.ejs b/generators/server/templates/pom.xml.ejs <%_ if (!skipClient) { _%>
<sonar.testExecutionReportPaths>${project.testresult.directory}/jest/TESTS-results-sonar.xml</sonar.testExecutionReportPaths>
<%_ } _%>
+ <%_ if (applicationType !== 'microservice') { _%>
<sonar.typ... | 2 |
diff --git a/src/server/service/config-loader.js b/src/server/service/config-loader.js @@ -29,7 +29,7 @@ const ENV_VAR_NAME_TO_CONFIG_INFO = {
type: TYPES.STRING,
default: 'aws',
},
- IS_FILE_UPLOAD_ENV_PRIORITIZED: {
+ FILE_UPLOAD_PRIORITIZE_ENV_VAR: {
ns: 'crowi',
key: 'app:isFileUploadEnvPrioritized',
type: TYPES.BO... | 10 |
diff --git a/biz/webui/cgi-bin/composer.js b/biz/webui/cgi-bin/composer.js @@ -19,7 +19,7 @@ module.exports = function(req, res) {
var _url = req.body.url;
if (_url && typeof _url == 'string') {
- _url = _url.replace(/#.*$/, '');
+ _url = util.encodeNonAsciiChar(_url.replace(/#.*$/, ''));
var options = url.parse(util.s... | 1 |
diff --git a/common/lib/util/utils.js b/common/lib/util/utils.js @@ -13,12 +13,14 @@ var Utils = (function() {
* props: an object whose enumerable properties are
* added, by reference only
*/
- Utils.mixin = function(target, src) {
- if(src) {
- var hasOwnProperty = src.hasOwnProperty;
- for(var key in src) {
- if(!has... | 11 |
diff --git a/public/viewjs/components/barcodescanner.js b/public/viewjs/components/barcodescanner.js @@ -101,7 +101,8 @@ Grocy.Components.BarcodeScanner.StartScanning = function()
"ean_reader",
"ean_8_reader",
"code_128_reader",
- "datamatrix"
+ "datamatrix",
+ "code_39_reader"
],
debug: {
showCanvas: Grocy.UserSetting... | 0 |
diff --git a/src/liff/pages/Article.svelte b/src/liff/pages/Article.svelte import { onMount } from 'svelte';
import { t } from 'ttag';
import { gql } from '../lib';
+ import { gaTitle } from 'src/lib/sharedUtils';
import FullpagePrompt from '../components/FullpagePrompt.svelte';
import Header from '../components/Header... | 12 |
diff --git a/token-metadata/0x5580ab97F226C324c671746a1787524AEF42E415/metadata.json b/token-metadata/0x5580ab97F226C324c671746a1787524AEF42E415/metadata.json "symbol": "JUL",
"address": "0x5580ab97F226C324c671746a1787524AEF42E415",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/components/item-name-cell/index.js b/src/components/item-name-cell/index.js @@ -22,10 +22,22 @@ const ItemLinks = ({itemList, parentItem}) => {
const currentCategoryData = categoryData[itemOrCategoryId];
let item = false;
+ if(itemOrCategoryId === '54009119af1c881c07000029'){
+ // Special case for item... | 9 |
diff --git a/token-metadata/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/metadata.json b/token-metadata/0xfe5F141Bf94fE84bC28deD0AB966c16B17490657/metadata.json "symbol": "LBA",
"address": "0xfe5F141Bf94fE84bC28deD0AB966c16B17490657",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/.github/workflows/dt.yaml b/.github/workflows/dt.yaml @@ -25,6 +25,8 @@ jobs:
git config user.password ${{ secrets.DEFINITELY_TYPED_PR_GITHUB_ACCESS_TOKEN }}
git remote set-url origin https://github.com/dbrudner/DefinitelyTyped
git fetch --unshallow -p origin
+ git remote add upstream https://github.com/De... | 3 |
diff --git a/apps/chimer/metadata.json b/apps/chimer/metadata.json {
"id": "chimer",
"name": "Chimer",
- "version": "0.01",
+ "version": "0.02",
"description": "A fork of Hour Chime. Buzz or beep on every 60, 30 or 15 minutes.",
"icon": "widget.png",
"type": "widget",
| 3 |
diff --git a/packages/frontend/src/redux/actions/account.js b/packages/frontend/src/redux/actions/account.js @@ -21,6 +21,7 @@ import {
ENABLE_IDENTITY_VERIFIED_ACCOUNT
} from '../../utils/wallet';
import { WalletError } from '../../utils/walletError';
+import refreshAccountOwner from '../sharedThunks/refreshAccountOwn... | 4 |
diff --git a/docs/publications/publications.json b/docs/publications/publications.json [
+ {
+ "type": "Mention",
+ "title": "Why End-to-End Testing is Important for Your Team",
+ "excerpt": "At Hubba, our business needs are always evolving and the development speed needs to catch up with it. One of the ways to keep th... | 0 |
diff --git a/src/traces/scattergl/convert.js b/src/traces/scattergl/convert.js @@ -104,6 +104,8 @@ function LineWithMarkers(scene, uid) {
this.scatter._trace = this;
this.fancyScatter = createFancyScatter(scene.glplot, this.scatterOptions);
this.fancyScatter._trace = this;
+
+ this.isVisible = false;
}
var proto = Line... | 0 |
diff --git a/src/utils/async-event-emitter.js b/src/utils/async-event-emitter.js -import Emittery from 'emittery/legacy';
-import Promise from 'pinkie';
-
+import Emittery from 'emittery';
export default class AsyncEventEmitter extends Emittery {
once (event, listener) {
| 4 |
diff --git a/app/helpers/frontend_config_helper.rb b/app/helpers/frontend_config_helper.rb @@ -80,7 +80,7 @@ module FrontendConfigHelper
if CartoDB.account_host.present? && show_account_update_url(user)
config[:account_update_url] = "#{CartoDB.account_host}"\
"#{CartoDB.account_path}/"\
- "#{user.username}/plan"
+ "#{u... | 13 |
diff --git a/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/Shared/Autopilot/CJ4NavModeSelector.js b/src/workingtitle-vcockpits-instruments-cj4/html_ui/Pages/VCockpit/Instruments/Airliners/CJ4/Shared/Autopilot/CJ4NavModeSelector.js @@ -548,7 +548,6 @@ class CJ4NavModeSelecto... | 7 |
diff --git a/package.json b/package.json "jest-watch-typeahead": "^0.2.1",
"js-sha256": "^0.9.0",
"mini-css-extract-plugin": "0.5.0",
- "nearlib": "github:nearprotocol/nearlib#staging",
+ "nearlib": "0.13.2",
"optimize-css-assets-webpack-plugin": "5.0.1",
"pnp-webpack-plugin": "1.2.1",
"postcss-flexbugs-fixes": "4.1.0"... | 1 |
diff --git a/bl-kernel/boot/init.php b/bl-kernel/boot/init.php @@ -209,7 +209,7 @@ $dbTags = new dbTags();
$dbCategories = new dbCategories();
$Site = new dbSite();
$Url = new Url();
-$Parsedown = new ParsedownExtra();
+$Parsedown = new Parsedown();
$Security = new Security();
$Syslog = new dbSyslog();
| 2 |
diff --git a/packages/bitcore-node/src/modules/ethereum/api/csp.ts b/packages/bitcore-node/src/modules/ethereum/api/csp.ts @@ -450,6 +450,7 @@ export class ETHStateProvider extends InternalStateProvider implements IChainSta
async estimateGas(params): Promise<number> {
return new Promise(async (resolve, reject) => {
+ t... | 1 |
diff --git a/lib/assets/javascripts/dashboard/views/organization/icon-picker/icons/organization-icon-collection.js b/lib/assets/javascripts/dashboard/views/organization/icon-picker/icons/organization-icon-collection.js @@ -13,7 +13,7 @@ module.exports = Backbone.Collection.extend({
},
model: function (attrs, opts) {
- ... | 4 |
diff --git a/gatsby-node.js b/gatsby-node.js @@ -5,7 +5,7 @@ const select = require(`unist-util-select`)
const fs = require(`fs-extra`)
exports.createPages = ({ graphql, boundActionCreators }) => {
- const { upsertPage } = boundActionCreators
+ const { createPage } = boundActionCreators
return new Promise((resolve, rej... | 3 |
diff --git a/assets/js/hooks/useDebounce.js b/assets/js/hooks/useDebounce.js /**
* External dependencies
*/
-import { useRef, useState } from 'react';
+import { useMemoOne } from 'use-memo-one';
import { debounce } from 'lodash';
/**
@@ -29,68 +29,6 @@ import { debounce } from 'lodash';
*/
import { useEffect } from '@w... | 2 |
diff --git a/src/view/items/Element.js b/src/view/items/Element.js @@ -516,7 +516,7 @@ function delegateHandler ( ev ) {
}
}
- node = node.parentNode;
+ node = node.parentNode || node.correspondingUseElement; // SVG with a <use> element in certain environments
}
return bubble;
@@ -528,7 +528,7 @@ function shouldFire ( ... | 9 |
diff --git a/test/utils.test.js b/test/utils.test.js @@ -7,6 +7,19 @@ import errors from '../src/error-types';
import utils from '../src/utils';
describe('#Utils', () => {
+ describe('.getBookingFromUr', () => {
+ it('should return undefined when ur array is empty', () => {
+ expect(utils.getBookingFromUr([], 'PNR001')... | 0 |
diff --git a/src/Cart.js b/src/Cart.js @@ -70,7 +70,7 @@ class Cart {
return 0
}
- return (this.totalItems + this.totalDelivery).toFixed(2)
+ return this.totalItems + this.totalDelivery
}
get totalItems() {
return _.reduce(this.items, function(memo, item) { return memo + item.total; }, 0)
@@ -97,3 +97,6 @@ class Cart {... | 9 |
diff --git a/package.json b/package.json "description": "A utility-first CSS framework for rapidly building custom user interfaces.",
"license": "MIT",
"main": "lib/index.js",
+ "style": "dist/tailwind.css",
"repository": "https://github.com/tailwindcss/tailwindcss.git",
"bugs": "https://github.com/tailwindcss/tailwind... | 3 |
diff --git a/android.Dockerfile b/android.Dockerfile @@ -26,6 +26,7 @@ RUN \
$ANDROID_HOME/tools/bin/sdkmanager "platform-tools" "platforms;android-28" && \
$ANDROID_HOME/tools/bin/sdkmanager "ndk-bundle" && \
export PATH="$PATH:$(pwd)/node/bin" && \
+ npm -g config set user root && \
scripts/make-toolchain-android.sh ... | 12 |
diff --git a/userscript.user.js b/userscript.user.js @@ -33970,6 +33970,7 @@ if (domain_nosub === "lystit.com" && domain.match(/cdn[a-z]?\.lystit\.com/)) {
var mouseAbsContextX = 0;
var mouseAbsContextY = 0;
+ var mouse_in_image_yet = false;
var mouseDelayX = 0;
var mouseDelayY = 0;
@@ -35825,6 +35826,7 @@ if (domain_n... | 7 |
diff --git a/src/views/annual-report/2020/annual-report.scss b/src/views/annual-report/2020/annual-report.scss @@ -1788,6 +1788,10 @@ img.comment-viz{
flex-direction: column;
justify-content: center;
align-items: center;
+ div{
+ width: 250px;
+ margin: auto;
+ }
}
.twitter-tweet{
width: 100%;
| 12 |
diff --git a/server/views/explorer/stories.py b/server/views/explorer/stories.py @@ -41,7 +41,7 @@ def api_explorer_demo_story_sample():
@app.route('/api/explorer/stories/samples.csv', methods=['POST'])
-def explorer_stories_csv2():
+def explorer_stories_csv():
filename = u'explorer-stories-'
data = request.form
if 'se... | 5 |
diff --git a/appjs/logicjavascript.js b/appjs/logicjavascript.js @@ -4012,12 +4012,13 @@ function alisum1find() {
}
function alisum3find(){
- let n = parseInt(document.getElementById("alisum3").value)
+ let n = parseInt(document.getElementById("alisum3").value);
+ document.getElementById("alisum3ans").innerHTML = "";
f... | 1 |
diff --git a/edit.js b/edit.js @@ -332,6 +332,7 @@ const chunkMeshContainer = new THREE.Object3D();
scene.add(chunkMeshContainer);
let currentChunkMesh = null;
let physics = null;
+let physicalMesh = null;
(async () => {
const [
@@ -392,8 +393,7 @@ physics = (() => {
object.updateMatrixWorld();
object.traverse(o => {
i... | 0 |
diff --git a/generators/server/templates/build.gradle.ejs b/generators/server/templates/build.gradle.ejs @@ -521,7 +521,6 @@ dependencies {
<%_ if (databaseType === 'couchbase') { _%>
testImplementation "org.testcontainers:couchbase"
<%_ } _%>
- testImplementation "org.hamcrest:hamcrest"
<%_ if (databaseType === 'sql')... | 2 |
diff --git a/vault/dendron.topic.vaults.md b/vault/dendron.topic.vaults.md id: 6682fca0-65ed-402c-8634-94cd51463cc4
title: Vaults
desc: ""
-updated: 1650052895884
+updated: 1655317082844
created: 1622841137387
---
@@ -91,7 +91,7 @@ A local vault is what you start off with. Its a vault that is local to your file
### Rem... | 7 |
diff --git a/.eslintrc b/.eslintrc "@typescript-eslint"
],
"rules": {
- "@typescript-eslint/no-unused-vars": "warn"
+ "no-unused-vars": ["warn", {
+ "argsIgnorePattern": "^_",
+ "varsIgnorePattern": "^_"
+ }],
+ "@typescript-eslint/no-unused-vars": ["warn", {
+ "argsIgnorePattern": "^_",
+ "varsIgnorePattern": "^_"
+ }... | 11 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.