code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/lib/substituteTailwindAtRules.js b/src/lib/substituteTailwindAtRules.js @@ -54,11 +54,11 @@ export default function(config) {
if (atRule.params === 'components') {
const tailwindComponentTree = postcss.root({
- nodes: [...container(unwrappedConfig)],
+ nodes: container(unwrappedConfig),
})
const plugin... | 2 |
diff --git a/test/jasmine/tests/axes_test.js b/test/jasmine/tests/axes_test.js @@ -267,6 +267,20 @@ describe('Test axes', function() {
});
checkTypes('date', 'linear');
});
+
+ it('needs one *true* category inner-array to be consider *multicategory*', function() {
+ supplyWithTrace({
+ x: [
+ [2018, 2018, 2017, 2017],
... | 0 |
diff --git a/docs/jobs.pug b/docs/jobs.pug @@ -7,6 +7,12 @@ block content
style.
.job {
position: relative;
+ cursor: pointer;
+ border: 1px solid #eef0f1;
+ padding: 15px;
+ margin-bottom: 15px;
+ border-radius: 4px;
+ transition: all .2s ease-in-out;
}
.job .company-logo {
@@ -17,7 +23,6 @@ block content
}
.job .titl... | 7 |
diff --git a/config/locales/en.json b/config/locales/en.json "module-uninstalling": "Uninstalling...",
"module-date": "Date",
"module-upgrade": "Upgrade",
+ "module-version-description": "This module does not come from the official store. Please specify the new version number to continue the update.",
"alarm-sleep-now"... | 1 |
diff --git a/gridsome/lib/build.js b/gridsome/lib/build.js @@ -44,6 +44,7 @@ module.exports = async (context, args) => {
// 5. clean up
await plugins.callHook('afterBuild', { context, config, queue })
+ await fs.remove(path.resolve(config.cacheDir, 'data'))
await fs.remove(config.manifestsDir)
console.log()
| 1 |
diff --git a/token-metadata/0x646707246D7d5C2a86d7206f41CA8199ea9CED69/metadata.json b/token-metadata/0x646707246D7d5C2a86d7206f41CA8199ea9CED69/metadata.json "symbol": "CHOP",
"address": "0x646707246D7d5C2a86d7206f41CA8199ea9CED69",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/generators/entity-client/templates/react/src/main/webapp/app/entities/entity-detail.tsx.ejs b/generators/entity-client/templates/react/src/main/webapp/app/entities/entity-detail.tsx.ejs @@ -61,7 +61,6 @@ export class <%= entityReactName %>Detail extends React.Component<I<%= entityRea
<h2>
<Translate conten... | 7 |
diff --git a/ui/app/components/modals/qr-scanner/qr-scanner.component.js b/ui/app/components/modals/qr-scanner/qr-scanner.component.js @@ -114,14 +114,17 @@ export default class QrScanner extends Component {
// For ex. EIP-681 (https://eips.ethereum.org/EIPS/eip-681)
// Bitcoin Cash address links - fox ex. ethereum:0x.... | 9 |
diff --git a/app/shared/components/Wallet/Status/Actions/Table.js b/app/shared/components/Wallet/Status/Actions/Table.js @@ -21,9 +21,9 @@ class WalletStatusActionsTable extends Component<Props> {
if (!loading) {
let fullResults = actionHistory.list.slice(0, amount);
- const filterSpamTransfersUnder = settings.filterSp... | 4 |
diff --git a/app/models/carto/user_table.rb b/app/models/carto/user_table.rb @@ -179,7 +179,6 @@ module Carto
end
def save_changes
- CartoDB::Logger.debug(message: "Carto::UserTable#save_changes")
# TODO: Compatibility with Sequel model, can be removed afterwards. Used in ::Table.set_the_geom_column!
save if changed?
e... | 2 |
diff --git a/src/pages/tag.js b/src/pages/tag.js import React, { Component } from "react";
import PropTypes from "prop-types";
import { observer, inject } from "mobx-react";
+import Helmet from "react-helmet";
import withData from "lib/apollo/withData";
import withCatalogItems from "containers/catalog/withCatalogItems"... | 3 |
diff --git a/src/intrinsics/JSON.mjs b/src/intrinsics/JSON.mjs @@ -155,13 +155,16 @@ class JSONValidator {
}
parseNumber() {
+ this.eat('-');
Q(this.expect(NUMERIC_START));
while (this.eat(NUMERIC));
if (this.eat('.')) {
+ Q(this.expect(NUMERIC));
while (this.eat(NUMERIC));
}
if (this.eat(['e', 'E'])) {
this.eat(['-', ... | 1 |
diff --git a/src/ipcHelper.js b/src/ipcHelper.js @@ -26,8 +26,12 @@ process.on('message', (opts) => {
memorySize,
} = opts;
- function done(error, ret) {
- process.send({ error, id, ret });
+ function callback(error, ret) {
+ process.send({
+ error,
+ id,
+ ret,
+ });
}
const handler = fun[handlerName];
@@ -44,11 +48,1... | 10 |
diff --git a/.gitignore b/.gitignore -_site/
+# Ignore installed npm modules
node_modules/
+
+# Ignore build tool output, e.g. code coverage
.nyc_output/
coverage/
-package-lock.json
+
+# Ignore API documentation
api-docs/
+
+# Ignore folders from source code editors
+.vscode
+.idea
+
+# Ignore eleventy output when doi... | 8 |
diff --git a/lib/polyfill/patchedmediakeys_ms.js b/lib/polyfill/patchedmediakeys_ms.js @@ -517,6 +517,9 @@ shaka.polyfill.PatchedMediaKeysMs.MediaKeySession.prototype.
*/
shaka.polyfill.PatchedMediaKeysMs.onMsNeedKey_ = function(event) {
shaka.log.debug('PatchedMediaKeysMs.onMsNeedKey_', event);
+ if (!event.initData) ... | 1 |
diff --git a/contracts/IssuanceController.sol b/contracts/IssuanceController.sol /*
-----------------------------------------------------------------
-FILE INFORMATION
------------------------------------------------------------------
+FILE INFORMATION -----------------------------------------------------------------
f... | 3 |
diff --git a/client/app/cloud/project/compute/infrastructure/virtualMachine/addEdit/cloud-project-compute-infrastructure-virtualMachine-addEdit.controller.js b/client/app/cloud/project/compute/infrastructure/virtualMachine/addEdit/cloud-project-compute-infrastructure-virtualMachine-addEdit.controller.js @@ -1090,6 +109... | 12 |
diff --git a/src/consumer/index.js b/src/consumer/index.js @@ -7,7 +7,7 @@ const { KafkaJSError } = require('../errors')
const eventNames = Object.values(events)
const eventKeys = Object.keys(events)
- .map(key => `Consumer.${key}`)
+ .map(key => `consumer.events.${key}`)
.join(', ')
module.exports = ({
| 7 |
diff --git a/lib/core/engine.js b/lib/core/engine.js @@ -252,7 +252,6 @@ class Engine {
storageService(_options) {
this.registerModule('storage', {
- addCheck: this.servicesMonitor.addCheck.bind(this.servicesMonitor),
storageConfig: this.config.storageConfig,
webServerConfig: this.config.webServerConfig,
blockchainConf... | 2 |
diff --git a/contributors.json b/contributors.json "country": "Indonesia",
"linkedin": "https://www.linkedin.com/in/fardeen-atallah-kabir-muhammad-4787681a0",
"name": "Fardeen Atallah Kabir Muhammad"
+ },
+
+ "Ahkam95": {
+ "country": "Sri Lanka",
+ "linkedin": "https://www.linkedin.com/in/ahkamnaseek/",
+ "name": "Ahk... | 3 |
diff --git a/packages/idyll-compiler/src/lexer.js b/packages/idyll-compiler/src/lexer.js @@ -57,13 +57,14 @@ const lex = function(options, alias = {}) {
str
).tokens;
};
- const findAlias = name => {
- const AliasNames = Object.keys(alias);
- return (
- AliasNames.find(
+ const findAliases = name => {
+ const aliasName... | 11 |
diff --git a/src/styles/variables.js b/src/styles/variables.js @@ -46,5 +46,5 @@ export default {
tooltipzIndex: 10050,
gutterWidth: 16,
popoverMenuShadow: '0px 4px 12px 0px rgba(0, 0, 0, 0.06)',
- minHeightToShowGraphics: 854, // below this height UI was broken on login form layout as there isn't enough height to show... | 7 |
diff --git a/articles/tutorials/calling-an-external-idp-api.md b/articles/tutorials/calling-an-external-idp-api.md @@ -74,6 +74,10 @@ Replace these values:
Within the user's `identities` array, there will be an `access_token` that you can extract and use to make calls to the IdP's API: `user.identities[0].access_token`... | 0 |
diff --git a/token-metadata/0xb4058411967D5046f3510943103805be61f0600E/metadata.json b/token-metadata/0xb4058411967D5046f3510943103805be61f0600E/metadata.json "symbol": "STONK",
"address": "0xb4058411967D5046f3510943103805be61f0600E",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/README.md b/README.md 
-
+
# SpaceX Data REST API
@@ -29,11 +29,11 @@ GET https://api.spacexdata.com/v2/launches/latest
```json
{
- "flight_number": 51,
+ "flight_number":52,
"launch_ye... | 3 |
diff --git a/src/components/ScrollViewWithPickers.js b/src/components/ScrollViewWithPickers.js @@ -23,10 +23,10 @@ class ScrollViewWithPickers extends React.Component {
};
this.scrollViewRef = React.createRef(null);
- this.handleScroll = this.handleScroll.bind(this);
+ this.handleScroll = this.setContextScrollPosition.... | 10 |
diff --git a/packages/@uppy/core/src/index.js b/packages/@uppy/core/src/index.js @@ -53,7 +53,7 @@ class Uppy {
// set default options
const defaultOptions = {
id: 'uppy',
- autoProceed: true,
+ autoProceed: false,
debug: false,
restrictions: {
maxFileSize: null,
| 12 |
diff --git a/src/basic_crawler.js b/src/basic_crawler.js @@ -181,6 +181,7 @@ class BasicCrawler {
this.maxRequestRetries = maxRequestRetries;
this.handledRequestsCount = 0;
+ let shouldLogMaxPagesExceeded = true;
const isMaxPagesExceeded = () => maxRequestsPerCrawl && maxRequestsPerCrawl <= this.handledRequestsCount;
c... | 7 |
diff --git a/lib/base/model.js b/lib/base/model.js @@ -28,10 +28,12 @@ function ModelBase(attributes, options) {
this._reset();
this.relations = {};
this.cid = _.uniqueId('c');
- if (options) {
_.extend(this, _.pick(options, modelProps));
+
if (options.parse) attrs = this.parse(attrs, options) || {};
- }
+ if (options.... | 5 |
diff --git a/setup.py b/setup.py @@ -5,7 +5,7 @@ here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
# Edit Snovault version after the `@` here, can be a branch or tag
-SNOVAULT_DEP = "git+https://github.com/ENC... | 3 |
diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml @@ -39,7 +39,7 @@ jobs:
- name: Set up JDK 12
uses: actions/setup-java@v1
with:
- java-version: 12
+ java-version: 11
- name: Install Java dependencies
run: make installLocalDependencies
| 12 |
diff --git a/lib/api/models/mock.js b/lib/api/models/mock.js @@ -124,7 +124,9 @@ export class Mock {
matches(request) {
const preparedRegex = toRegExp(this.url);
- return request.method === this.method &&
+ const methodMatches = request.method.toLowerCase() === this.method.toLowerCase();
+
+ return methodMatches &&
thi... | 1 |
diff --git a/react/src/base/inputs/SprkInput/SprkInput.test.js b/react/src/base/inputs/SprkInput/SprkInput.test.js @@ -49,12 +49,16 @@ describe('SprkInput:', () => {
it('should assign id when id has a value', () => {
const wrapper = mount(<SprkInput id="321" />);
- expect(wrapper.find('.sprk-b-TextInput').prop('id')).t... | 3 |
diff --git a/types/index.d.ts b/types/index.d.ts @@ -1978,7 +1978,7 @@ declare namespace Knex {
static extend(
methodName: string,
fn: <TRecord extends {} = any, TResult = unknown[]>(
- this: Knex<TRecord, TResult>,
+ this: QueryBuilder<TRecord, TResult>,
...args: any[]
) => QueryBuilder<TRecord, TResult>
): void;
| 1 |
diff --git a/src/js/components/Clock/Clock.js b/src/js/components/Clock/Clock.js @@ -27,6 +27,9 @@ const parseTime = (time, hourLimit) => {
match = TIME_REGEXP.exec(normalizedTime);
if (match) {
result.hours = parseFloat(match[1]);
+ if (hourLimit === 12) {
+ result.hours = (result.hours > 12 ? (result.hours - 12) : re... | 1 |
diff --git a/src/client/js/components/Me/PersonalSettings.jsx b/src/client/js/components/Me/PersonalSettings.jsx @@ -10,74 +10,43 @@ import ApiSettings from './ApiSettings';
class PersonalSettings extends React.Component {
-
render() {
const { t } = this.props;
- // const Icons = [
- // <i className="icon-fw icon-user"... | 10 |
diff --git a/packages/context/src/context-connect.js b/packages/context/src/context-connect.js @@ -16,7 +16,7 @@ import { CONNECT_STATIC_NAMESPACE } from './constants';
* component wrappers.
*
* @template {import('@wp-g2/create-styles').ViewOwnProps<{}, any>} P
- * @param {(props: P, ref: import('react').Ref<any>) => J... | 11 |
diff --git a/lib/assets/javascripts/new-dashboard/pages/Maps.vue b/lib/assets/javascripts/new-dashboard/pages/Maps.vue @@ -149,8 +149,11 @@ export default {
return !this.isFetchingMaps && !this.numResults && (!this.hasFilterApplied('mine') || this.totalUserEntries > 0);
},
emptyStateText () {
- const route = this.$rout... | 10 |
diff --git a/src/components/Header.js b/src/components/Header.js import React from 'react';
-import { NavLink } from 'react-router-dom';
+import { NavLink , Link } from 'react-router-dom';
import globe from '../Globe.svg';
import '../styles/Header.css';
@@ -7,11 +7,11 @@ const header = () => {
return (
<header classNam... | 14 |
diff --git a/src/js/controllers/wallet-selector.controller.js b/src/js/controllers/wallet-selector.controller.js @@ -129,6 +129,11 @@ angular.module('copayApp.controllers').controller('walletSelectorController', fu
} else {
$scope.walletsInsufficientFunds.push(wallet);
}
+ if ($scope.coin === 'btc') { // As this is a p... | 3 |
diff --git a/src/scripts/interactive-video.js b/src/scripts/interactive-video.js @@ -355,6 +355,13 @@ function InteractiveVideo(params, id, contentData) {
// Handle video captions loaded
self.video.on('captions', function (event) {
+ if (!self.controls) {
+ // Video is loaded but there are no controls
+ self.addControl... | 0 |
diff --git a/packages/openneuro-app/src/scripts/client.jsx b/packages/openneuro-app/src/scripts/client.jsx @@ -11,9 +11,16 @@ import * as GoogleAnalytics from 'react-ga'
if (module.hot) module.hot.accept()
loadConfig().then(config => {
+ if (
+ config.sentry.environment === 'production' ||
+ config.sentry.environment =... | 8 |
diff --git a/package.json b/package.json "./entity": "./src/og/entity/index.js",
"./control": "./src/og/control/index.js",
"./webgl": "./src/og/webgl/index.js",
- "./scene": "./src/og/scene/index.js"
+ "./scene": "./src/og/scene/index.js",
+ "./css/og.css": "./css/og.css"
},
"devDependencies": {
"@babel/preset-env": "^... | 0 |
diff --git a/runtime.js b/runtime.js @@ -909,8 +909,10 @@ const _loadScript = async (file, {files = null, parentUrl = null, contentId = nu
mesh.getPhysicsIds = () => app.physicsIds;
mesh.getComponents = () => components;
mesh.getApp = () => app;
+ let hitTime = -1;
mesh.hit = () => {
console.log('hit', mesh);
+ hitTime... | 0 |
diff --git a/src/__experimental__/components/decimal/decimal.component.js b/src/__experimental__/components/decimal/decimal.component.js @@ -64,9 +64,10 @@ class Decimal extends React.Component {
if (isValid) {
this.props.onChange(evt);
-
+ } else {
+ const newPosition = selectionEnd - 1;
setTimeout(() => {
- target.se... | 5 |
diff --git a/shared/img/hero-ribbon__mixed.svg b/shared/img/hero-ribbon__mixed.svg -<svg xmlns="http://www.w3.org/2000/svg" width="48" height="65"><g fill="none"><path fill="#B8BABC" d="M24.422 58.014l10.35 6.393a1.08 1.08 0 0 0 1.653-.922v-28.84c0-.599-.486-1.085-1.085-1.085H12.369c-.6 0-1.086.486-1.086 1.086v28.84a1.... | 4 |
diff --git a/tabulator.js b/tabulator.js return match;
},
+ _setColGroupVisibility:function(column, visibility){
+ var self = this;
+
+ var group = column.parent().closest(".tabulator-col-group");
+
+ console.log("group", visibility, group.length, group)
+
+ if(group.length){
+ var visCols = $(".tabulator-col:visible",... | 9 |
diff --git a/node_common/constants.js b/node_common/constants.js @@ -6,8 +6,8 @@ export const FILE_STORAGE_URL = "./public/static/files/";
export const GITHUB_URL = "https://github.com/filecoin-project/slate";
export const ANALYTICS_URL = "https://slate-stats-dev.azurewebsites.net/";
-// NOTE(toast): 30 GB from jim/mar... | 2 |
diff --git a/codegens/ruby/lib/util/parseBody.js b/codegens/ruby/lib/util/parseBody.js var _ = require('../lodash'),
- sanitize = require('./sanitize').sanitize;
+ sanitize = require('./sanitize').sanitize,
+ nullToken = '__RUBY#%0NULL__';
+
+/**
+ * Convert null to Ruby equivalent nil
+ *
+ * @param {String} key
+ * @... | 9 |
diff --git a/buildtools/check-example.js b/buildtools/check-example.js @@ -103,7 +103,7 @@ function loaded(page, browser) {
if (url == 'https://ows.asitvd.ch/wmts/1.0.0/WMTSCapabilities.xml') {
request.respond(ASITVDCapabilities);
} else if (parse(url).host == parse(page_url).host ||
- url.startsWith('http://localhost:... | 8 |
diff --git a/client/public/index.html b/client/public/index.html <body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
- <script>(function(){var s = document.createElement('script'),e = ! document.body ? document.querySelector('head') : document.body;s.src = 'https://acsbapp.c... | 5 |
diff --git a/content/articles/add-an-external-css-file-to-a-javafx-application/index.md b/content/articles/add-an-external-css-file-to-a-javafx-application/index.md @@ -30,13 +30,9 @@ In the FXML file, it's also hard to follow up with the styling in the code since
- [Folder structure](#folder-structure)
- [Add code ins... | 1 |
diff --git a/assets/js/googlesitekit/datastore/site/connection.js b/assets/js/googlesitekit/datastore/site/connection.js @@ -103,21 +103,6 @@ export const actions = {
type: RECEIVE_CONNECTION,
};
},
-
- /**
- * Dispatches an action signifying the `fetchConnection` side-effect failed.
- *
- * @since 1.5.0
- * @private
-... | 2 |
diff --git a/src/encoded/tests/data/inserts/user.json b/src/encoded/tests/data/inserts/user.json "community"
],
"uuid": "75659c39-eaea-47b7-ba26-92e9ff183e6c"
+ },
+ {
+ "email": "2paulsud@gmail.com",
+ "first_name": "Paul",
+ "groups": [
+ "admin"
+ ],
+ "job_title": "Associate Data Wrangler",
+ "lab": "/labs/j-michae... | 0 |
diff --git a/html/components/card.stories.js b/html/components/card.stories.js @@ -283,7 +283,7 @@ export const twoUpCards = () => (
>
Learn More
<svg class="sprk-c-Icon" viewBox="0 0 64 64">
- <use xlink:href="#chevron-right" />
+ <use xlink:href="#right-arrow" />
</svg>
</a>
</div>
@@ -334,7 +334,7 @@ export const tw... | 3 |
diff --git a/generators/server/templates/src/main/java/package/domain/_User.java b/generators/server/templates/src/main/java/package/domain/_User.java @@ -99,8 +99,7 @@ public class User<% if (databaseType == 'sql' || databaseType == 'mongodb') { %>
@Size(max = 256)<% if (databaseType == 'sql') { %>
@Column(name = "ima... | 2 |
diff --git a/drop-manager.js b/drop-manager.js @@ -96,6 +96,7 @@ const loadPromise = (async () => {
let lastTimestamp = Date.now();
let animation = null;
+ const timeOffset = Math.random() * 10;
o.update = () => {
const now = Date.now();
const timeDiff = (now - lastTimestamp) / 1000;
@@ -157,7 +158,7 @@ const loadPromi... | 0 |
diff --git a/site/monitoring.xml b/site/monitoring.xml @@ -79,7 +79,7 @@ limitations under the License.
<li>Memory usage (used, buffered, cached & free percentages)</li>
<li><a href="https://www.kernel.org/doc/Documentation/sysctl/vm.txt">Virtual Memory</a> statistics (dirty page flushes, writeback volume)</li>
<li... | 14 |
diff --git a/lib/aggregate.js b/lib/aggregate.js @@ -623,6 +623,9 @@ Aggregate.prototype.unionWith = function(options) {
*/
Aggregate.prototype.read = function(pref, tags) {
+ if (!this.options) {
+ this.options = {};
+ }
read.call(this, pref, tags);
return this;
};
@@ -641,6 +644,9 @@ Aggregate.prototype.read = functi... | 13 |
diff --git a/lib/carto/assets_service.rb b/lib/carto/assets_service.rb @@ -57,9 +57,6 @@ module Carto
filename = resource.respond_to?(:original_filename) ? resource.original_filename : resource
extension = File.extname(filename).downcase
- # Filename might include a postfix hash -- Rack::Test::UploadedFile adds it
- ex... | 2 |
diff --git a/articles/quickstart/spa/angular-beta/02-calling-an-api.md b/articles/quickstart/spa/angular-beta/02-calling-an-api.md @@ -20,7 +20,7 @@ Most single-page apps use resources from data APIs. You may want to restrict acc
This tutorial shows you how to create a simple API using [Express](https://expressjs.com) ... | 3 |
diff --git a/lib/assets/core/javascripts/cartodb3/editor/layers/layers-view.js b/lib/assets/core/javascripts/cartodb3/editor/layers/layers-view.js @@ -28,10 +28,6 @@ var REQUIRED_OPTS = [
*/
module.exports = CoreView.extend({
- events: {
- 'click .js-analysis-node': '_onAnalysisNodeClicked'
- },
-
initialize: function ... | 2 |
diff --git a/netlify.toml b/netlify.toml [build]
base = "docs/"
publish = "docs/public/"
- command = "gatsby build --prefix-paths && mkdir -p docs && mv public/* docs && mv docs public/"
+ command = "gatsby build --prefix-paths && mkdir -p docs && mv public/* docs && mv docs public/ && mv public/docs/_redirects public"... | 5 |
diff --git a/.github/workflows/ios.yml b/.github/workflows/ios.yml name: iOS CI/CD v1
-#
-#on:
-# push:
-# branches: [master, staging, next]
-# pull_request:
-# branches: [master, staging, next]
-# types:
-# - closed
+on:
+ push:
+ branches: [master, staging, next]
+ pull_request:
+ branches: [master, staging, next]
+ ... | 0 |
diff --git a/aura-impl/src/main/java/org/auraframework/impl/ServerServiceImpl.java b/aura-impl/src/main/java/org/auraframework/impl/ServerServiceImpl.java @@ -219,6 +219,8 @@ public class ServerServiceImpl implements ServerService {
} catch (QuickFixException qfe) {
// well, it's not a component, it's not an app... giv... | 8 |
diff --git a/app/screens/home/search/search.tsx b/app/screens/home/search/search.tsx @@ -93,26 +93,22 @@ const SearchScreen = ({teamId}: Props) => {
const {scrollPaddingTop, scrollRef, scrollValue, onScroll, headerHeight, hideHeader} = useCollapsibleHeader<FlatList>(true, onSnap);
+ const handleCancelAndClearSearch = u... | 4 |
diff --git a/token-metadata/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7/metadata.json b/token-metadata/0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7/metadata.json "symbol": "JNT",
"address": "0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/elements/editable-table/lib/editable-table.haxProperties.json b/elements/editable-table/lib/editable-table.haxProperties.json }
],
"advanced": [
+ {
+ "property": "dataCsv",
+ "title": "CSV Data",
+ "description": "Make a table from an uploaded CSV file",
+ "inputMethod": "fileupload",
+ "accepts": "csv"
+... | 11 |
diff --git a/CHANGELOG.md b/CHANGELOG.md # Changelog
+## v1.8.4 (2020-4-7)
+
+### Bug Fixes
+
+* TestCafe no longer throws an error when you access the `visible` selector property for a non-existing element ([#2386](https://github.com/DevExpress/testcafe/issues/2386))
+* `t.pressKey` now works if the active element is ... | 0 |
diff --git a/core/block.js b/core/block.js @@ -2473,35 +2473,6 @@ Blockly.Blocks['lambda_typed'] = {
return xml;
},
- /**
- * Create XML to represent list inputs.
- * @return {Element} XML storage element.
- * @this Blockly.Block
- */
- mutationToDom: function() {
- var container = document.createElement('mutation');
-... | 2 |
diff --git a/lib/networks.js b/lib/networks.js @@ -157,6 +157,8 @@ function removeNetwork(network) {
unindexNetworkBy(network, Object.keys(networkMaps));
}
+
+
var networkMagic = {
livenet: 0xe3e1f3e8,
testnet: 0xf4e5f3f4,
@@ -171,6 +173,23 @@ var dnsSeeds = [
'seed.deadalnix.me'
];
+
+var TESTNET = {
+ PORT: 18333,
+ ... | 5 |
diff --git a/config/creds_united_marbles.json b/config/creds_united_marbles.json "network_id": "asdf",
"peers": [
{
- "grpc_host": "localhost",
+ "grpc_host": "192.168.99.100",
"grpc_port": 7051,
"type": "peer",
"network_id": "asdf",
"id": "peer1"
},
{
- "grpc_host": "localhost",
+ "grpc_host": "192.168.99.100",
"grpc_... | 13 |
diff --git a/lib/helpers/setDefaultsOnInsert.js b/lib/helpers/setDefaultsOnInsert.js 'use strict';
-
const modifiedPaths = require('./common').modifiedPaths;
+const get = require('./get');
/**
* Applies defaults to update and findOneAndUpdate operations.
@@ -95,7 +95,7 @@ module.exports = function(filter, schema, caste... | 11 |
diff --git a/Dockerfile b/Dockerfile @@ -69,7 +69,10 @@ COPY ./docker/lnd.conf.sample /relay/.lnd/lnd.conf
RUN git clone https://github.com/stakwork/sphinx-keysend-test/ /sphinx-keysend/
WORKDIR /sphinx-keysend/
-RUN git checkout binary
+
+ARG sphinx_keysend_checkout="binary"
+
+RUN git checkout $sphinx_keysend_checkou... | 0 |
diff --git a/src/encoded/schemas/library.json b/src/encoded/schemas/library.json "XXXenum": [
"gel",
"see document",
- "SPRI beads"
+ "SPRI beads",
+ "BluePippin"
],
"format": "semi-controlled"
},
"type": "string",
"enum": [
"formaldehyde",
+ "EGS and formaldehyde",
"ultraviolet irradiation"
]
},
| 0 |
diff --git a/userscript.user.js b/userscript.user.js @@ -5483,9 +5483,16 @@ var $$IMU_EXPORT$$;
domain.match(/pic[0-9]\.zhimg\.com/)) {
// https://pic1.zhimg.com/74c63994d55e7307d41d39066d53eb72_1200x500.jpg
// https://pic1.zhimg.com/74c63994d55e7307d41d39066d53eb72.jpg
+ // https://pic1.zhimg.com/74c63994d55e7307d41d3... | 7 |
diff --git a/templates/actor-sheet-gcs.html b/templates/actor-sheet-gcs.html ({{eqtsummary.eqtlbs}} lb; ${{eqtsummary.eqtcost}}) <i class='fas fa-plus addequipmenticon'></i></span>
</div>
<div class="cost header">$</div>
- <div class="weight header"><i class="fas fa-weight"></i></div>
+ <div class="weight header... | 3 |
diff --git a/lib/build/fix-shrinkwrap.js b/lib/build/fix-shrinkwrap.js const fs = require('fs');
const path = require('path');
-const colors = require('colors');
const file = path.resolve(__dirname, '../../npm-shrinkwrap.json');
const buildPattern = (protocol) => `"resolved": "${protocol}://registry.npmjs`;
@@ -15,7 +1... | 2 |
diff --git a/lib/plugins/input/elasticsearchHttp.js b/lib/plugins/input/elasticsearchHttp.js @@ -16,7 +16,7 @@ function InputElasticsearchHttp (config, eventEmitter) {
}
}
InputElasticsearchHttp.prototype.start = function () {
- consoleLogger.log('loading Elasticsearch HTTP')
+ consoleLogger.log('Loading Elasticsearch ... | 14 |
diff --git a/Dockerfile b/Dockerfile # base image
FROM pelias/libpostal_baseimage
-MAINTAINER Pelias
+
+# maintainer information
+LABEL maintainer="pelias@mapzen.com"
EXPOSE 3100
-LABEL io.openshift.expose-services 3100:http
# Where the app is built and run inside the docker fs
ENV WORK=/opt/pelias
| 4 |
diff --git a/src/lib/util.js b/src/lib/util.js @@ -1524,16 +1524,35 @@ const util = {
* It is can use ".children(util.getListChildren)" to exclude text nodes, but "documentFragment.children" is not supported in IE.
* So check the node type and exclude the text no (current.nodeType !== 1)
*/
- // empty whitelist
- const... | 3 |
diff --git a/Makefile b/Makefile @@ -72,7 +72,7 @@ test: test-sources
.PHONY: test-docs
test-docs:
ifeq ($(MODERN_NODE), true)
- @evaldown --comment-marker unexpected-markdown --require ./bootstrap-unexpected-markdown.js --validate --reporter spec ./documentation
+ @./node_modules/.bin/evaldown --comment-marker unexpec... | 4 |
diff --git a/src/muncher/adventure.js b/src/muncher/adventure.js @@ -139,6 +139,7 @@ export async function generateAdventureConfig(full = true, cobalt = true) {
result.index = srdIndex;
const skillEntry = srdIndex.find((i) => i.name === "Using Each Ability");
+ if (skillEntry) {
result.lookups.skills = CONFIG.DDB.abili... | 9 |
diff --git a/src/client/styles/scss/_navbar.scss b/src/client/styles/scss/_navbar.scss .grw-navbar {
top: -$grw-navbar-height !important;
- &.grw-navbar-for-old-ios {
- top: initial !important;
- }
-
max-height: $grw-navbar-height + $grw-navbar-border-width;
border-top: 0;
border-right: 0;
| 13 |
diff --git a/ethereum.js b/ethereum.js import storage from './storage.js';
+import {loginEndpoint} from './constants.js';
import Web3 from './web3.min.js';
import bip39 from './bip39.js';
import hdkeySpec from './hdkey.js';
@@ -764,6 +765,37 @@ const discordOauthUrl = `https://discord.com/api/oauth2/authorize?client_id... | 0 |
diff --git a/src/types/swiper-options.d.ts b/src/types/swiper-options.d.ts @@ -43,16 +43,6 @@ export interface SwiperOptions {
*/
initialSlide?: number;
- /**
- * Force Swiper container width. Useful to be set in SSR and Test environments for correct Swiper initialization
- */
- width?: number;
-
- /**
- * Force Swiper... | 2 |
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -197,19 +197,6 @@ release-api-keys: &release-api-keys
echo 'export GOOGLE_MAPS_API_KEY=$RELEASE_GOOGLE_MAPS_API_KEY' >> $BASH_ENV
source $BASH_ENV
-set-beta-stage: &set-beta-stage
- run:
- name: Set release stage env-var to beta
- command: |
- echo 'export REL... | 4 |
diff --git a/articles/protocols/saml/saml-idp-generic.md b/articles/protocols/saml/saml-idp-generic.md ---
+title: Auth0 as Identity Provider
description: How to configure Auth0 to serve as an Identity Provider in a SAML federation.
+toc: true
---
# Auth0 as Identity Provider
| 0 |
diff --git a/CHANGES.md b/CHANGES.md - Added `FeatureDetection.supportsBigInt64Array`, `FeatureDetection.supportsBigUint64Array` and `FeatureDetection.supportsBigInt`.
+- Added `ShadowMap.fadingEnabled` for disabling shadows fading when the light source is close to the horizon [#9565](https://github.com/CesiumGS/cesium... | 3 |
diff --git a/sources/osgUtil/NodeGizmo.js b/sources/osgUtil/NodeGizmo.js @@ -156,6 +156,10 @@ var NodeGizmo = function ( viewer ) {
this._iv = new IntersectionVisitor();
this._iv.setIntersector( this._lsi );
+ // disable mouse camera event when interacting with gizmo
+ this._eventMouse = viewer._eventProxy.StandardMous... | 7 |
diff --git a/package.json b/package.json "name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
- "version": "0.207.5",
+ "version": "0.208.0",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
| 6 |
diff --git a/test/Terminal/Terminal.test.js b/test/Terminal/Terminal.test.js */
import sinon from 'sinon';
-import { expect } from 'chai';
+import chai, { expect } from 'chai';
+import sinonChai from 'sinon-chai';
import proxyquire from 'proxyquire';
import config from '../testconfig';
import uAPI from '../../src';
+ch... | 0 |
diff --git a/server/preprocessing/other-scripts/linkedcat.R b/server/preprocessing/other-scripts/linkedcat.R @@ -139,8 +139,8 @@ build_query <- function(query, params, limit){
'tags', 'category', 'bib', 'language_code',
'ocrtext', 'goobi_link')
query <- gsub(" ?<<von>>", "", query)
- aq <- paste0(lapply(q_fields, build... | 7 |
diff --git a/articles/support/index.md b/articles/support/index.md @@ -109,8 +109,6 @@ Using this page, you can:
## Program Features
-The Support Program applies to **production instances** of the Auth0 Platform only. If you require support for non-production instances, then you may request [Demand Services](#demand-se... | 2 |
diff --git a/src/arrows.js b/src/arrows.js 'use strict';
import React from 'react';
-import createReactClass from 'create-react-class';
import classnames from 'classnames';
import Helpers from './mixins/helpers';
-export var PrevArrow = createReactClass({
-
- clickHandler: function (options, e) {
+export class PrevArro... | 2 |
diff --git a/src/lib/contract/method.js b/src/lib/contract/method.js @@ -304,7 +304,6 @@ export default class Method {
since,
eventName: this.name,
sort: 'block_timestamp',
- // blockNumber: 'latest',
filters: options.filters
}
if (options.resourceNode) {
| 5 |
diff --git a/src/containers/catalog/withCatalogItems.js b/src/containers/catalog/withCatalogItems.js import React from "react";
import { Query } from "react-apollo";
-import { Provider } from "mobx-react";
import primaryShopIdQuery from "../common-gql/primaryShopId.gql";
import catalogItemsQuery from "./catalogItems.gq... | 2 |
diff --git a/README.md b/README.md @@ -248,7 +248,7 @@ sudo systemctl enable edumeet
## Load balanced installation
-To deploy this as a load balanced cluster, have a look at [HAproxy](HAproxy.md).
+To deploy this as a load balanced cluster, have a look at [HAproxy](/docs/HAproxy.md).
## Learning management integration
| 3 |
diff --git a/tests/integration/blob.test.js b/tests/integration/blob.test.js @@ -79,12 +79,12 @@ describe('Blob Module', () => {
expect(chainBlob[1].toString(16)).toEqual(blobHex);
}, 30000);
- test('Can create and read a Uint8Array Blob.', async () => {
- const blobUint = new Uint8Array([1, 2, 3]);
+ test('Can create ... | 13 |
diff --git a/data.js b/data.js @@ -2330,6 +2330,13 @@ module.exports = [
url: "https://github.com/creationix/domchanger",
source: "https://raw.githubusercontent.com/creationix/domchanger/master/domchanger.js"
},
+ {
+ name: "onfontload",
+ tags: ["font", "load", "webfont", "font-face", "FOUT"],
+ description: "Detects ... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.