code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/assets/js/util/index.js b/assets/js/util/index.js @@ -907,6 +907,8 @@ export const showErrorNotification = ( ErrorComponent, props = {} ) => {
export const decodeHtmlEntity = ( str ) => {
const decoded = str.replace( /&#(\d+);/g, function( match, dec ) {
return String.fromCharCode( dec );
+ } ).replace( /(... | 14 |
diff --git a/app/shared/components/Producers/Proxies.js b/app/shared/components/Producers/Proxies.js @@ -3,14 +3,17 @@ import React, { Component } from 'react';
import { Header, Loader, Segment, Visibility } from 'semantic-ui-react';
import { translate } from 'react-i18next';
+import ProducersProxy from './Proxy';
impo... | 11 |
diff --git a/vr-ui.js b/vr-ui.js @@ -1366,12 +1366,6 @@ const makeIconMesh = () => {
});
};
mesh.getAnchors = () => anchors;
- mesh.click = anchor => {
- const match = anchor.id.match(/^tile-([0-9]+)-([0-9]+)$/);
- const i = parseInt(match[1], 10);
- const j = parseInt(match[2], 10);
- onclick(tiles[i][j]);
- };
mesh.u... | 2 |
diff --git a/generators/openapi-client/files.js b/generators/openapi-client/files.js @@ -54,7 +54,7 @@ function writeFiles() {
let command;
if (generatorName === 'spring') {
this.log(chalk.green(`\n\nGenerating java client code for client ${cliName} (${inputSpec})`));
- const cliPackage = `${this.packageName}.client.${... | 4 |
diff --git a/src/resources/views/crud/inc/datatables_logic.blade.php b/src/resources/views/crud/inc/datatables_logic.blade.php "url": "{!! url($crud->route.'/search').'?'.Request::getQueryString() !!}",
"type": "POST",
"data": {
- "unfilteredQueryCount": "{{$crud->getOperationSetting('unfilteredQueryCount') ?? false}}"... | 14 |
diff --git a/app-template/bitcoincom/appConfig.json b/app-template/bitcoincom/appConfig.json "windowsAppId": "804636ee-b017-4cad-8719-e58ac97ffa5c",
"pushSenderId": "1036948132229",
"description": "A Secure Bitcoin Wallet",
- "version": "4.2.0",
- "androidVersion": "402000",
+ "version": "4.3.0",
+ "androidVersion": "4... | 3 |
diff --git a/contracts/oasisContracts/KyberOasisReserve.sol b/contracts/oasisContracts/KyberOasisReserve.sol @@ -14,7 +14,7 @@ contract OtcInterface {
}
-contract TokenInterface is ERC20 {
+contract WethInterface is ERC20 {
function deposit() public payable;
function withdraw(uint) public;
}
@@ -26,7 +26,7 @@ contract ... | 9 |
diff --git a/src/home/index.html b/src/home/index.html <ul class="navigation">
<li class="item"><a href="/api">API Reference</a></li>
<li class="item"><a href="/events">Developer Events</a></li>
- <li class="item dashboard"><a href="/dashboard" data-navigo><i class="icon-layers"></i></a></li>
+ <li class="item dashboar... | 14 |
diff --git a/ui/component/cardMedia/view.jsx b/ui/component/cardMedia/view.jsx @@ -20,12 +20,12 @@ class CardMedia extends React.PureComponent<Props> {
let url;
// @if TARGET='web'
// Pass image urls through a compression proxy
- // url = thumbnail || Placeholder;
- url = thumbnail
- ? 'https://ext.thumbnails.lbry.com/... | 13 |
diff --git a/app/views/shared/_activity_item_for_dashboard.html.erb b/app/views/shared/_activity_item_for_dashboard.html.erb elsif item.respond_to?(:user)
item.user
end
+ return unless user
edit_url = case item.class.name
when "Comment" then edit_comment_path(item)
when "Identification" then edit_identification_path(it... | 1 |
diff --git a/src/lib/gundb/UserStorageClass.js b/src/lib/gundb/UserStorageClass.js @@ -676,7 +676,7 @@ export class UserStorage {
const cleanValue = UserStorage.cleanFieldForIndex(field, value)
if (!cleanValue) {
- logger.error('indexProfileField - value is empty', cleanValue)
+ logger.error(`indexProfileField - field ... | 0 |
diff --git a/contracts/deploy/016_aave_strategy.js b/contracts/deploy/016_aave_strategy.js @@ -3,6 +3,7 @@ const {
isMainnet,
isRinkeby,
} = require("../test/helpers.js");
+const addresses = require("../utils/addresses.js");
const { getTxOpts } = require("../utils/tx");
const { utils } = require("ethers");
@@ -122,12 +... | 12 |
diff --git a/src/filter/rulecomponent.html b/src/filter/rulecomponent.html ng-switch-when="date|datetime"
ng-switch-when-separator="|">
<div ng-switch="$ctrl.clone.operator">
- <div ng-switch-when="..">
+ <div ng-switch-when="..|time_during" ng-switch-when-separator="|">
<ngeo-date-picker
time="$ctrl.timeRangeMode"
on-... | 9 |
diff --git a/io-manager.js b/io-manager.js @@ -36,6 +36,8 @@ ioManager.keys = {
left: false,
right: false,
shift: false,
+ space: false,
+ ctrl: false,
};
const resetKeys = () => {
for (const k in ioManager.keys) {
@@ -180,6 +182,12 @@ const _updateIo = (timeDiff, frame) => {
if (ioManager.keys.down) {
direction.z += 1... | 0 |
diff --git a/packages/@uppy/box/package.json b/packages/@uppy/box/package.json {
"name": "@uppy/box",
"description": "Import files from Box, into Uppy.",
- "version": "1.0.0",
+ "version": "0.2.0",
"license": "MIT",
"main": "lib/index.js",
"types": "types/index.d.ts",
},
"peerDependencies": {
"@uppy/core": "^1.0.0"
+ }... | 0 |
diff --git a/js/huobi.js b/js/huobi.js @@ -2783,14 +2783,14 @@ module.exports = class huobi extends Exchange {
//
const data = this.safeValue (response, 'data', []);
const result = {};
- this.options['networkJunctionsByTitles'] = {};
- this.options['networkTitlesByJunctions'] = {};
+ this.options['networkChainIdsByName... | 10 |
diff --git a/gulpfile.js b/gulpfile.js @@ -141,6 +141,7 @@ gulp.task('build-angular', (cb) => {
'install-angular-dev-app',
'setup-spark-packages',
'setup-spark-angular-projects',
+ 'build-angular-dev-app-netlify',
cb,
);
});
@@ -151,6 +152,7 @@ gulp.task('build-react', (cb) => {
'install-react-dev-app',
'link-spark-to-... | 3 |
diff --git a/components/chip/theme.css b/components/chip/theme.css width: var(--chip-remove-size);
}
-.delete:hover .deleteIcon {
- background: var(--chip-remove-background-hover);
-}
-
.deleteIcon {
background: var(--chip-remove-background);
border-radius: var(--chip-remove-size);
stroke-width: var(--chip-remove-strok... | 1 |
diff --git a/includes/Core/Assets/Assets.php b/includes/Core/Assets/Assets.php @@ -651,6 +651,22 @@ final class Assets {
'fallback' => true,
)
),
+ new Script(
+ 'react',
+ array(
+ 'src' => $base_url . 'vendor/react' . $react_suffix . '.js',
+ 'version' => '16.8.5',
+ 'fallback' => true,
+ )
+ ),
+ new Script(
+ 'reac... | 1 |
diff --git a/_includes/faq.html b/_includes/faq.html {{ item[1].answer }}
</div>
</div>
+</div>
{% capture counter %}{{ counter | plus: 1 }}{% endcapture %}
{% endfor %}
\ No newline at end of file
| 1 |
diff --git a/readme.md b/readme.md @@ -331,6 +331,8 @@ This makes processing patches easier. If you want to normalize to the official s
For a more in-depth study, see [Distributing patches and rebasing actions using Immer](https://medium.com/@mweststrate/distributing-state-changes-using-snapshots-patches-and-actions-pa... | 0 |
diff --git a/lib/api/controllers/documentController.js b/lib/api/controllers/documentController.js @@ -30,7 +30,7 @@ const {
} = require('../../util/requestAssertions');
const extractFields = require('../../util/extractFields');
const { HttpStream } = require('../../types');
-const { PassThrough } = require('stream');
... | 4 |
diff --git a/readme.md b/readme.md @@ -10,6 +10,7 @@ npm start
```
to start a local testing instance of KiriMoto on port 8080
+access KiriMoto on the url http://localhost:8080/kiri
## Other Start Options
@@ -18,4 +19,4 @@ npm run-script start-web
```
serves code as obfuscated, compressed bundles. this is the mode used ... | 3 |
diff --git a/test/Terminal/TerminalParser.test.js b/test/Terminal/TerminalParser.test.js @@ -8,9 +8,18 @@ import uAPI from '../../src';
import ParserUapi from '../../src/Request/uapi-parser';
import terminalParser from '../../src/Services/Terminal/TerminalParser';
+const TerminalError = uAPI.errors.Terminal;
+const Req... | 0 |
diff --git a/src/tests/structs/db/int_Base.databaseless.test.js b/src/tests/structs/db/int_Base.databaseless.test.js @@ -125,6 +125,6 @@ describe('Int::structs/db/Base Databaseless', function () {
await Promise.all(files.map(fileName => fsUnlink(path.join(folderPath, fileName))))
}
await fsRmdir(folderPath)
- await fsR... | 1 |
diff --git a/userscript.user.js b/userscript.user.js @@ -52170,10 +52170,13 @@ var $$IMU_EXPORT$$;
// https://www.famitsu.com/images/000/124/494/l_5874c086779f9.jpg -- 640x360, y/z don't work
// https://www.famitsu.com/images/000/181/637/5d5a8379e4e00.jpg
// https://www.famitsu.com/images/000/181/637/z_5d5a8379e4e00.jp... | 7 |
diff --git a/test/jasmine/tests/histogram2d_test.js b/test/jasmine/tests/histogram2d_test.js +var Plotly = require('@lib/index');
var Plots = require('@src/plots/plots');
var Lib = require('@src/lib');
var supplyDefaults = require('@src/traces/histogram2d/defaults');
var calc = require('@src/traces/histogram2d/calc');
... | 0 |
diff --git a/lib/types/embedded.js b/lib/types/embedded.js @@ -89,12 +89,16 @@ EmbeddedDocument.prototype.$setIndex = function(index) {
EmbeddedDocument.prototype.markModified = function(path) {
this.$__.activePaths.modify(path);
+ const parent = this.$__parent();
+ const fullPath = this.$__pathRelativeToParent(path);
... | 1 |
diff --git a/edit.js b/edit.js @@ -4099,6 +4099,19 @@ function animate(timestamp, frame) {
});
}
}
+
+ for (const inputSource of session.inputSources) {
+ if (inputSource && inputSource.hand) {
+ for (let i = 0; i < inputSource.hand.length; i++) {
+ const joint = inputSource.hand[i];
+
+ const jointPose = joint && fram... | 0 |
diff --git a/src/components/Tooltip/tooltip.js b/src/components/Tooltip/tooltip.js @@ -118,21 +118,24 @@ class Tooltip extends Component {
visible: false,
};
- triggerRef = React.createRef();
+ constructor(props) {
+ super(props);
+ this.triggerRef = React.createRef();
+ }
componentDidMount() {
- window.addEventListene... | 7 |
diff --git a/src/models/addon.js b/src/models/addon.js @@ -149,7 +149,7 @@ Addon.getByName = function(api, orgaId, addonName) {
return s_addons.flatMapLatest(function(addons) {
var filtered_addons = _.filter(addons, function(addon) {
- return addon.name === addonName;
+ return addon.name === addonName || addon.realId =... | 11 |
diff --git a/project/src/ui/FileDialog.cpp b/project/src/ui/FileDialog.cpp @@ -10,7 +10,7 @@ namespace lime {
std::wstring* FileDialog::OpenDirectory (std::wstring* filter, std::wstring* defaultPath) {
- // TODO: Filters
+ // TODO: Filter?
#ifdef HX_WINDOWS
@@ -56,11 +56,12 @@ namespace lime {
std::wstring* FileDialog:... | 7 |
diff --git a/website/src/_posts/2017-07-golden-retriever.md b/website/src/_posts/2017-07-golden-retriever.md @@ -51,7 +51,7 @@ If you really want to know...
Because we cannot access the actual files that we were uploading from disk, we cache them inside the browser.
-It all started with a [a prototype](https://github.c... | 2 |
diff --git a/components/bases-locales/validator/report/summary/issues-sumup.js b/components/bases-locales/validator/report/summary/issues-sumup.js import React from 'react'
import PropTypes from 'prop-types'
import {X, AlertTriangle} from 'react-feather'
+import {flattenDeep, groupBy} from 'lodash'
import theme from '@... | 0 |
diff --git a/aleph/index/entities.py b/aleph/index/entities.py @@ -5,6 +5,7 @@ from banal import ensure_list
from followthemoney import model
from followthemoney.types import registry
from elasticsearch.helpers import scan
+from elasticsearch.exceptions import NotFoundError
from aleph.core import es, cache
from aleph.m... | 9 |
diff --git a/src/webhook/index.js b/src/webhook/index.js @@ -82,10 +82,16 @@ const singleUserHandler = async (
// Handle follow/unfollow event
if (type === 'follow') {
+ await UserSettings.setAllowNewReplyUpdate(userId, true);
+
+ if (process.env.RUMORS_LINE_BOT_URL) {
const data = { sessionId: Date.now() };
result = {... | 9 |
diff --git a/lib/utils.js b/lib/utils.js @@ -72,7 +72,7 @@ function hasAlreadyProcessedMessage(msg, ID=null, key=null) {
return false;
}
-const defaultPrecision = {temperature: 2, humidity: 2, pressure: 1};
+const defaultPrecision = {temperature: 2, humidity: 2, pressure: 1, pm25: 2};
function calibrateAndPrecisionRoun... | 12 |
diff --git a/apps/hourstrike/app.js b/apps/hourstrike/app.js @@ -23,50 +23,24 @@ if (!settings) resetSettings();
function showMainMenu() {
var mode_txt = ['Off','1 min','5 min','10 min','1/4 h','1/2 h','1 h'];
var mode_interval = [-1,60,300,600,900,1800,3600];
- const mainmenu = {
- '': { 'title': 'Hour Strike' },
- 'N... | 3 |
diff --git a/src/frontend/packages/semantic-data-provider/src/dataProvider/utils/buildSparqlQuery.js b/src/frontend/packages/semantic-data-provider/src/dataProvider/utils/buildSparqlQuery.js @@ -70,6 +70,14 @@ const buildSparqlQuery = ({ containers, params: { filter }, dereference, ontolog
type: 'bgp',
triples: [triple... | 7 |
diff --git a/views/tabarea.es b/views/tabarea.es @@ -383,6 +383,7 @@ export default connect(
minimumWidth={{ px: 0, percent: this.props.doubleTabbed ? 10 : 100 }}
defaultWidth={{ px: 0, percent: 50 }}
initWidth={this.props.mainPanelWidth}
+ minimumHeight={{ px: 0, height: 100 }}
initHeight={{ px: 0, percent: 100 }}
par... | 12 |
diff --git a/src/inner-slider.js b/src/inner-slider.js @@ -369,12 +369,13 @@ export class InnerSlider extends React.Component {
slideHandler = (index, dontAnimate = false) => {
const {
asNavFor,
- currentSlide,
beforeChange,
onLazyLoad,
speed,
afterChange
} = this.props;
+ // capture currentslide before state is update... | 12 |
diff --git a/public/stylesheets/main.css b/public/stylesheets/main.css @@ -70,6 +70,12 @@ footer {
/*
* Custom styles
*/
+.label-icon {
+ position: absolute;
+ border: 1px solid black;
+ border-radius: 100%;
+ outline: 0.5px solid white;
+}
.icon-outline {
border: 1px solid black;
@@ -1284,13 +1290,6 @@ kbd {
border-bo... | 5 |
diff --git a/content/tutorials/marketplace-introduction.md b/content/tutorials/marketplace-introduction.md @@ -15,4 +15,4 @@ https://v4.market.oceanprotocol.com/
2. Consumers can purchase access to data, algorithms, compute services.
-3. Liquidity providers can stake their Ocean tokens to earn interest on the transacti... | 14 |
diff --git a/example/src/Demo.jsx b/example/src/Demo.jsx @@ -5,7 +5,7 @@ const extensions = require('../../packages/oas-extensions/');
const withSpecFetching = require('./SpecFetcher');
-const ApiExplorer = require('../../packages/api-explorer/src');
+const ApiExplorer = require('../../packages/api-explorer');
const Lo... | 4 |
diff --git a/scenes/SceneArchive.js b/scenes/SceneArchive.js @@ -14,7 +14,6 @@ import ScenePageHeader from "~/components/core/ScenePageHeader";
import SceneSettings from "~/scenes/SceneSettings";
import SceneDeals from "~/scenes/SceneDeals";
import SceneWallet from "~/scenes/SceneWallet";
-import SceneSentinel from "~/... | 2 |
diff --git a/package.json b/package.json "type": "git",
"url": "git://github.com/11ty/eleventy.git"
},
+ "bugs": "https://github.com/11ty/eleventy/issues",
+ "homepage": "https://www.11ty.dev/",
"ava": {
"files": [
"./test/*.js"
| 0 |
diff --git a/token-metadata/0x55648De19836338549130B1af587F16beA46F66B/metadata.json b/token-metadata/0x55648De19836338549130B1af587F16beA46F66B/metadata.json "symbol": "PBL",
"address": "0x55648De19836338549130B1af587F16beA46F66B",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/ui/common/typedInput.js b/packages/node_modules/@node-red/editor-client/src/js/ui/common/typedInput.js var previousType = this.typeMap[this.propertyType];
previousValue = this.input.val();
- if (this.typeChanged) {
+ if (previousType && this.typeChanged)... | 9 |
diff --git a/setup.cfg b/setup.cfg [flake8]
-exclude = node_modules, docs/components_page/components/collapse.py, docs/components_page/components/buttons/usage.py, docs/components_page/components/popover.py, docs/components_page/components/fade.py
+exclude = node_modules, docs/components_page/components/collapse.py, do... | 8 |
diff --git a/server/game/cards/13.6-LMHR/CityOfWealth.js b/server/game/cards/13.6-LMHR/CityOfWealth.js @@ -13,7 +13,7 @@ class CityOfWealth extends PlotCard {
}
numOfCityPlots() {
- this.controller.getNumberOfUsedPlotsByTrait('City');
+ return this.controller.getNumberOfUsedPlotsByTrait('City');
}
}
| 1 |
diff --git a/fileserver/server.js b/fileserver/server.js @@ -142,8 +142,8 @@ class FileServer {
onetimePasswordCounter+=1;
let token = hotp.generate(secret, onetimePasswordCounter);
if (abbrv===0) {
- console.log('++++ BioImage Suite Web FileServer Initialized');
- console.log('++++ \t I am listening for incoming conne... | 11 |
diff --git a/README.md b/README.md @@ -176,6 +176,19 @@ functions:
handler: handler.createUser
```
+supported definitions:
+
+item | support
+---|---
+simple | :white_check_mark:
+|
+cors | :white_check_mark:
+method | :white_check_mark:
+path | :white_check_mark:
+private | :white_check_mark:
+
+_incomplete list: more... | 0 |
diff --git a/sox.features.js b/sox.features.js userid = sox.helpers.getIDFromAnchor(this);
username = this.innerText;
- if (userid !== 0) postAuthors[userid] = username;
+ if (userid > 0) postAuthors[userid] = username;
} else {
sox.loginfo('Could not find user user link for: ', this);
}
| 8 |
diff --git a/src/ApiGateway.js b/src/ApiGateway.js @@ -546,8 +546,7 @@ module.exports = class ApiGateway {
debugLog('event:', event);
- return new Promise(async (resolve) => {
- const callback = (err, data) => {
+ const processResponse = (err, data) => {
if (this.options.showDuration) {
performance.mark(`${requestId}-e... | 0 |
diff --git a/website/javascript/templates/EditUserProfile.vue b/website/javascript/templates/EditUserProfile.vue @@ -276,9 +276,7 @@ export default {
'organization_id': this === 'NONE' ? null : this.organization
}
- if(this.level === 'High School')
- {
-
+ if(this.level === 'High School'){
request['organization_id'] = ... | 1 |
diff --git a/lib/classes/Variables.test.js b/lib/classes/Variables.test.js 'use strict';
+/* eslint-disable no-unused-expressions */
+
const path = require('path');
const proxyquire = require('proxyquire');
const YAML = require('js-yaml');
@@ -646,8 +648,8 @@ describe('Variables', () => {
return serverless.variables.ge... | 7 |
diff --git a/lib/ring.js b/lib/ring.js @@ -34,6 +34,7 @@ class RingMqtt {
this.client = false
this.mqttConnected = false
this.republishCount = 6 // Republish config/state this many times after startup or HA start/restart
+ this.refreshToken = undefined
// Configure event listeners
utils.event.on('mqtt_state', async (st... | 7 |
diff --git a/example2/src/App.svelte b/example2/src/App.svelte <script>
import { setContext } from 'svelte'
- import { Router } from '@sveltech/routify'
+ import { Router, basepath } from '@sveltech/routify'
import { routes } from '@sveltech/routify/tmp/routes'
import { writable } from 'svelte/store'
import ServiceWork... | 11 |
diff --git a/lib/taiko.js b/lib/taiko.js @@ -236,7 +236,8 @@ module.exports.goto = async (url, options = { timeout: 30000 }) => {
let func = addPromiseToWait(promises);
xhrEvent.addListener('xhrEvent', func);
if (options.headers) await network.setExtraHTTPHeaders({ headers: options.headers });
- await page.navigate({ u... | 9 |
diff --git a/src/geo/ui/legends/base/img-loader-view.js b/src/geo/ui/legends/base/img-loader-view.js @@ -30,7 +30,7 @@ module.exports = Backbone.View.extend({
var svg = content.cloneNode(true);
var $svg = $(svg);
$svg = $svg.removeAttr('xmlns:a');
- $svg.attr('class', self._imageClass + ' is-svg js-image');
+ $svg.attr... | 13 |
diff --git a/src/utility/index.jsx b/src/utility/index.jsx @@ -18,8 +18,9 @@ import subTextStyle from 'components/Visualizations/Table/subText.css';
import findLast from 'lodash.findlast';
import _ from 'lodash/fp';
import util from 'util';
-// import FontIcon from 'material-ui/FontIcon';
+// import SvgIcon from 'mater... | 9 |
diff --git a/definitions/npm/axios_v0.16.x/flow_v0.25.x-/axios_v0.16.x.js b/definitions/npm/axios_v0.16.x/flow_v0.25.x-/axios_v0.16.x.js @@ -62,7 +62,7 @@ declare module 'axios' {
statusText: string,
request: http$ClientRequest | XMLHttpRequest
}
- declare type $AxiosXHR<T> = $AxiosXHR<T>;
+ declare type $AxiosXHR<T> =... | 1 |
diff --git a/buildspec.yml b/buildspec.yml @@ -12,7 +12,15 @@ phases:
- echo Building the Docker image...
- echo Logging in to Docker Hub...
- echo "${DOCKERHUB_PASSWORD}" | docker login -u "${DOCKERHUB_USERNAME}" --password-stdin
- - docker build -t $REPOSITORY_URI:latest .
+ - echo "${CODEBUILD_BUILD_ARN}"
+ - |
+ if... | 0 |
diff --git a/src/traces/streamtube/calc.js b/src/traces/streamtube/calc.js @@ -107,14 +107,14 @@ function processGrid(trace) {
var firstY, lastY;
var firstZ, lastZ;
if(len) {
- firstX = +x[0];
- firstY = +y[0];
- firstZ = +z[0];
+ firstX = x[0];
+ firstY = y[0];
+ firstZ = z[0];
}
if(len > 1) {
- lastX = +x[len - 1];
-... | 2 |
diff --git a/src/menelaus_web_buckets.erl b/src/menelaus_web_buckets.erl @@ -204,7 +204,10 @@ build_auto_compaction_info(BucketConfig, couchstore) ->
menelaus_web:build_bucket_auto_compaction_settings(ACSettings)}]
end;
build_auto_compaction_info(_BucketConfig, ephemeral) ->
- [].
+ [];
+build_auto_compaction_info(_Buc... | 9 |
diff --git a/webdriver-ts/src/benchmarkRunner.ts b/webdriver-ts/src/benchmarkRunner.ts @@ -194,7 +194,7 @@ async function computeResultsStartup(driver: WebDriver): Promise<number> {
let paints = R.filter(type_eq('paint'))(eventsAfterNavigationStart);
if (paints.length == 0) {
- console.log("at least one paint event is ... | 7 |
diff --git a/src/angular/projects/spark-core-angular/src/lib/components/sprk-accordion-item/sprk-accordion-item.component.spec.ts b/src/angular/projects/spark-core-angular/src/lib/components/sprk-accordion-item/sprk-accordion-item.component.spec.ts @@ -100,4 +100,12 @@ describe('SparkAccordionItemComponent', () => {
fi... | 3 |
diff --git a/services/ChoresService.php b/services/ChoresService.php @@ -133,7 +133,7 @@ class ChoresService extends BaseService
$chore = $this->getDatabase()->chores($choreId);
$choreLastTrackedTime = $this->getDatabase()->chores_log()->where('chore_id = :1 AND undone = 0', $choreId)->max('tracked_time');
- $lastChore... | 4 |
diff --git a/spec/models/carto/user_table_spec.rb b/spec/models/carto/user_table_spec.rb @@ -37,7 +37,6 @@ describe Carto::UserTable do
it 'supports values larger than 2^31-1' do
column = Carto::UserTable.columns.find{|c| c.name=='table_id'}
expect { column.type_cast_for_database(2164557046) }.to_not raise_error
- colu... | 2 |
diff --git a/server/tests/classes/client.test.js b/server/tests/classes/client.test.js @@ -29,9 +29,6 @@ describe("Client", () => {
expect(c.caches).toEqual([]);
expect(c.mobile).toBe(false);
expect(c.cards).toEqual([]);
-
- expect(c.sentPing).toBeNull();
- expect(c.ping).toBeNull();
});
test("should create a Scanner",... | 2 |
diff --git a/token-metadata/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A/metadata.json b/token-metadata/0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A/metadata.json "symbol": "SCHA",
"address": "0x2cAd4991f62fc6Fcd8EC219f37E7DE52B688B75A",
"decimals": 0,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/token-metadata/0x86642d169dB9F57A02C65052049CbbbfB3E3b08c/metadata.json b/token-metadata/0x86642d169dB9F57A02C65052049CbbbfB3E3b08c/metadata.json "symbol": "DRAY",
"address": "0x86642d169dB9F57A02C65052049CbbbfB3E3b08c",
"decimals": 4,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/core/server/api/shared/validators/input/all.js b/core/server/api/shared/validators/input/all.js const debug = require('@tryghost/debug')('api:shared:validators:input:all');
const _ = require('lodash');
const Promise = require('bluebird');
-const i18n = require('../../../../../shared/i18n');
+const tpl = re... | 14 |
diff --git a/src/editor/commands/InsertInlineNodeCommand.js b/src/editor/commands/InsertInlineNodeCommand.js @@ -40,6 +40,7 @@ class InsertInlineNodeCommand extends SubstanceInsertInlineNodeCommand {
editorSession.transaction((tx) => {
let node = this.createNode(tx, params)
tx.insertInlineNode(node)
+ this.setSelection... | 7 |
diff --git a/packages/build/src/error/info.js b/packages/build/src/error/info.js // Add information related to an error without colliding with existing properties
const addErrorInfo = function(error, info) {
+ if (!canHaveErrorInfo(error)) {
+ return
+ }
+
error[INFO_SYM] = { ...error[INFO_SYM], ...info }
}
const getEr... | 7 |
diff --git a/components/Table.jsx b/components/Table.jsx @@ -101,7 +101,7 @@ export default function Table ({ data, filter, setFilter, reportFound }) {
return (
<div className={styles.container}>
- <table className={styles.table} {...getTableProps()} border='0' cellspacing='0' cellpadding='0'>
+ <table className={style... | 1 |
diff --git a/src/pages/ReimbursementAccount/CompanyStep.js b/src/pages/ReimbursementAccount/CompanyStep.js @@ -48,6 +48,7 @@ class CompanyStep extends React.Component {
this.submit = this.submit.bind(this);
this.clearErrorAndSetValue = this.clearErrorAndSetValue.bind(this);
this.clearError = inputKey => ReimbursementAc... | 13 |
diff --git a/src/encoded/docs/updating_ontologies.md b/src/encoded/docs/updating_ontologies.md @@ -38,8 +38,8 @@ How to update the ontology versions
6. Update the following information
- Site release version: 52
- ontology.json file: ontology-2017-01-25.json
+ Site release version: 53
+ ontology.json file: ontology-201... | 3 |
diff --git a/token-metadata/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf/metadata.json b/token-metadata/0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf/metadata.json "symbol": "RENBCH",
"address": "0x459086F2376525BdCebA5bDDA135e4E9d3FeF5bf",
"decimals": 8,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/components/bases-locales/charte/partners-searchbar.js b/components/bases-locales/charte/partners-searchbar.js @@ -20,8 +20,9 @@ function PartnersSearchbar() {
const [isLoading, setIsLoading] = useState(false)
const [error, setError] = useState(null)
+ const communePartners = filteredPartners.filter(partner... | 0 |
diff --git a/packages/idyll-components/src/scroller.js b/packages/idyll-components/src/scroller.js const React = require('react');
const { filterChildren, mapChildren } = require('idyll-component-children');
-import TextContainer from './text-container';
+import TextContainer from './default/text-container';
const d3 =... | 3 |
diff --git a/components/system/components/Buttons.js b/components/system/components/Buttons.js @@ -169,7 +169,9 @@ export const ButtonSecondary = (props) => {
? STYLES_BUTTON_SECONDARY_TRANSPARENT
: STYLES_BUTTON_SECONDARY
}
- {...props}
+ onMouseUp={props.onClick}
+ onTouchEnd={props.onClick}
+ children={props.childre... | 2 |
diff --git a/publish/src/Deployer.js b/publish/src/Deployer.js @@ -59,7 +59,8 @@ class Deployer {
this.provider.web3 = new Web3(new Web3.providers.HttpProvider(providerUrl));
this.provider.ethers.provider = new ethers.providers.JsonRpcProvider(providerUrl);
- if (useFork || (!privateKey && network === 'local')) {
+ // ... | 11 |
diff --git a/src/content/developers/docs/apis/json-rpc/index.md b/src/content/developers/docs/apis/json-rpc/index.md @@ -5,11 +5,11 @@ lang: en
sidebar: true
---
-In order for a software application to interact with the Ethereum blockchain (by reading blockchain data and/or sending transactions to the network), it must... | 14 |
diff --git a/src/pages/ReportSettingsPage.js b/src/pages/ReportSettingsPage.js @@ -150,36 +150,12 @@ class ReportSettingsPage extends Component {
<Text style={[styles.formLabel]} numberOfLines={1}>
{this.props.translate('newRoomPage.roomName')}
</Text>
- <View style={[styles.flexRow]}>
- <View style={[styles.flex3]}>
-... | 4 |
diff --git a/src/client/js/components/Admin/SlackIntegration/CustomBotWithProxySettings.jsx b/src/client/js/components/Admin/SlackIntegration/CustomBotWithProxySettings.jsx @@ -51,9 +51,9 @@ const CustomBotWithProxySettings = (props) => {
}
};
- const generateTokenHandler = async() => {
+ const generateTokenHandler = a... | 10 |
diff --git a/articles/appliance/infrastructure/virtual-machines.md b/articles/appliance/infrastructure/virtual-machines.md @@ -41,7 +41,7 @@ For multi-node clusters, Auth0 recommends deploying the PSaaS Appliance virtual
## For AWS Users
-* The *recommended* [instance type](https://aws.amazon.com/ec2/instance-types/) i... | 3 |
diff --git a/README.md b/README.md @@ -754,12 +754,12 @@ Like this:
In addition to the standard HTML input formats, JSON Editor can also integrate with several 3rd party specialized editors. These libraries are not included in JSON Editor and you must load them on the page yourself.
-__SCEditor__ provides WYSIWYG editi... | 1 |
diff --git a/.travis.yml b/.travis.yml @@ -51,10 +51,6 @@ before_install:
curl -s http://api.wordpress.org/core/version-check/1.7/ > /tmp/wp-latest.json
WP_VERSION=$(grep -o '"version":"[^"]*' /tmp/wp-latest.json | sed 's/"version":"//')
fi
- - |
- if [[ "$PHP" == "1" ]]; then
- tests/bin/install-wp-tests.sh wordpress_... | 2 |
diff --git a/test/jasmine/tests/select_test.js b/test/jasmine/tests/select_test.js @@ -889,7 +889,7 @@ describe('Test select box and lasso per trace:', function() {
[[350, 200], [400, 250]],
function() {
assertPoints([['GBR', 26.507354205352502], ['IRL', 86.4125147625692]]);
- assertSelectedPoints({0: [54, 68]});
+ ass... | 3 |
diff --git a/packages/app/src/components/Common/Dropdown/PageItemControl.tsx b/packages/app/src/components/Common/Dropdown/PageItemControl.tsx @@ -8,6 +8,7 @@ import {
import {
IPageInfoAll, isIPageInfoForOperation,
} from '~/interfaces/page';
+import { IPageOperationProcessInfo } from '~/interfaces/page-operation';
im... | 4 |
diff --git a/js/node/bis_fileservertestutils.js b/js/node/bis_fileservertestutils.js @@ -35,7 +35,7 @@ let terminateReject=null;
const createTestingServer=function(wsmode=false,timeout=500) {
- serverpath=serverpath || path.join(__dirname,'../bin');
+ const serverpath= path.join(__dirname,'../bin');
let servername=path... | 11 |
diff --git a/src/CONST.js b/src/CONST.js @@ -14,7 +14,7 @@ const CONST = {
API_ATTACHMENT_VALIDATIONS: {
// Same as the PHP layer allows
- ALLOWED_EXTENSIONS: ['jpg', 'jpeg', 'png', 'gif', 'pdf', 'html', 'txt', 'rtf', 'doc', 'docx', 'htm', 'tiff', 'tif', 'xml'],
+ ALLOWED_EXTENSIONS: ['jpg', 'jpeg', 'png', 'gif', 'pdf'... | 11 |
diff --git a/src/addons/presenter.js b/src/addons/presenter.js @@ -49,10 +49,10 @@ class Presenter extends React.PureComponent {
this.defaultRender = passChildren
}
- // We need to wrap the children of this presenter in a mediator
- // "sock". This is so that we can pass along context in browsers
- // that do not suppo... | 4 |
diff --git a/src/struct/databases/SQLiteHandler.js b/src/struct/databases/SQLiteHandler.js @@ -163,7 +163,7 @@ class SQLiteHandler extends DatabaseHandler {
let copy = {};
Object.keys(config).forEach(key => {
- if (config[key] === undefined) return copy[key] = this.sanitize(this.defaultConfig[key]);
+ if (config[key] =... | 1 |
diff --git a/components/Notifications/enhancers.js b/components/Notifications/enhancers.js @@ -208,7 +208,7 @@ export const myUserSubscriptions = gql`
const notificationCountQuery = gql`
query getNotificationCount {
- notifications {
+ notifications(onlyUnread: true) {
nodes {
...notificationInfo
}
| 4 |
diff --git a/config/redirects.js b/config/redirects.js @@ -2615,10 +2615,9 @@ module.exports = [
{
from: [
'/integrations/sso-integrations',
- '/sso/current/integrations',
- '/integrations/sso'
+ '/sso/current/integrations'
],
- to: 'https://marketplace.auth0.com/features/sso-integrations'
+ to: '/integrations/sso'
},
... | 2 |
diff --git a/src/main/resources/public/scss/modals/load-bug.scss b/src/main/resources/public/scss/modals/load-bug.scss width: 350px;
margin-left: 21px;
}
+
+ .dropdown-menu {
+ width: 350px;
+ margin-left: 118px;
+ }
}
.bts-description {
| 1 |
diff --git a/app-manager.js b/app-manager.js @@ -59,6 +59,14 @@ class AppManager extends EventTarget {
setPushingLocalUpdates(pushingLocalUpdates) {
this.pushingLocalUpdates = pushingLocalUpdates;
}
+ getPeerOwnerAppManager(instanceId) {
+ for (const appManager of appManagers) {
+ if (appManager !== this && appManager.... | 0 |
diff --git a/generators/entity-server/templates/src/main/java/package/repository/rowmapper/EntityRowMapper.java.ejs b/generators/entity-server/templates/src/main/java/package/repository/rowmapper/EntityRowMapper.java.ejs @@ -40,9 +40,6 @@ import <%= packageName %>.domain.<%= asEntity(entityClass) %>;
import <%= package... | 13 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.